summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-02-19 23:50:04 +0100
committerlpsolit%gmail.com <>2009-02-19 23:50:04 +0100
commit66d2c81c74cc028e205b1e53c093a63c2a281256 (patch)
treee882eb92e7ff66dceeeed587fc9f8cbf1aa9b46d /importxml.pl
parent7d2c22642310a85bb0ffd8d7c47ac8a62dea860e (diff)
downloadbugzilla-66d2c81c74cc028e205b1e53c093a63c2a281256.tar.gz
bugzilla-66d2c81c74cc028e205b1e53c093a63c2a281256.tar.xz
Bug 479228: Duplicated words in the error message in importxml.pl when the default product or component doesn't exist - Patch by Frédéric Buclin <LpSolit@gmail.com> r=ghendricks a=LpSolit
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl16
1 files changed, 7 insertions, 9 deletions
diff --git a/importxml.pl b/importxml.pl
index a141d5e16..0a6aefe45 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -322,19 +322,17 @@ sub init() {
Error( "no urlbase set", "REOPEN", $exporter ) unless ($urlbase);
my $def_product =
new Bugzilla::Product( { name => $params->{"moved-default-product"} } )
- || Error("Cannot import these bugs because an invalid default
- product was defined for the target db."
- . $params->{"maintainer"} . " needs to fix the definitions of
- moved-default-product. \n", "REOPEN", $exporter);
+ || Error("an invalid default product was defined for the target DB. " .
+ $params->{"maintainer"} . " needs to fix the definitions of " .
+ "moved-default-product. \n", "REOPEN", $exporter);
my $def_component = new Bugzilla::Component(
{
product => $def_product,
name => $params->{"moved-default-component"}
})
- || Error("Cannot import these bugs because an invalid default
- component was defined for the target db."
- . $params->{"maintainer"} . " needs to fix the definitions of
- moved-default-component.\n", "REOPEN", $exporter);
+ || Error("an invalid default component was defined for the target DB. " .
+ $params->{"maintainer"} . " needs to fix the definitions of " .
+ "moved-default-component.\n", "REOPEN", $exporter);
}
@@ -1354,7 +1352,7 @@ importxml - Import bugzilla bug data from xml.
Options:
-? --help brief help message
-v --verbose print error and debug information.
- Mulltiple -v increases verbosity
+ Multiple -v increases verbosity
-m --sendmail send mail to recipients with log of bugs imported
--attach_path The path to the attachment files.
(Required if encoding="filename" is used for attachments.)