diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index 1fd546a7a87..3382ebb0179 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -111,10 +111,7 @@ class ConvertType extends Command {
protected function validateInput(InputInterface $input, OutputInterface $output) {
$type = $input->getArgument('type');
if ($this->connectionFactory->normalizeType($type) === 'sqlite3') {
- $output->writeln(sprintf(
- 'Converting to SQLite (sqlite3) is currently not supported.',
- $type
- ));
+ $output->writeln('Converting to SQLite (sqlite3) is currently not supported.');
return 1;
}
if ($type === $this->config->getValue('dbtype', '')) {
@@ -129,10 +126,7 @@ class ConvertType extends Command {
// to drop sequence triggers when dropping a table, even though
// such triggers may not exist. This results in errors like
// "ORA-04080: trigger 'OC_STORAGES_AI_PK' does not exist".
- $output->writeln(sprintf(
- 'The --clear-schema option is not supported when converting to Oracle (oci).',
- $type
- ));
+ $output->writeln('The --clear-schema option is not supported when converting to Oracle (oci).');
return 1;
}
}