From e778fea5e5b15cd2b5cb8fccc07888884882c30d Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 1 Mar 2011 20:44:15 +0000 Subject: [PATCH] Fix help wordwrap in namespaceDupes.php help wordwrap is handled by the Maintenance class automatically. Tabulations and new line are not needed anymore. --- maintenance/namespaceDupes.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintenance/namespaceDupes.php b/maintenance/namespaceDupes.php index dbb16bcd5c..d77d431487 100644 --- a/maintenance/namespaceDupes.php +++ b/maintenance/namespaceDupes.php @@ -30,10 +30,10 @@ class NamespaceConflictChecker extends Maintenance { parent::__construct(); $this->mDescription = ""; $this->addOption( 'fix', 'Attempt to automatically fix errors' ); - $this->addOption( 'suffix', "Dupes will be renamed with correct namespace with\n" . - "\t\t Appended after the article name", false, true ); - $this->addOption( 'prefix', "Do an explicit check for the given title prefix\n" . - "\t\tappended after the article name", false, true ); + $this->addOption( 'suffix', "Dupes will be renamed with correct namespace with " . + " appended after the article name", false, true ); + $this->addOption( 'prefix', "Do an explicit check for the given title prefix " . + "appended after the article name", false, true ); } public function execute() { -- 2.20.1