summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 1a910f8e0..c50abea95 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -375,7 +375,8 @@ sub get_text {
my $message;
$template->process('global/message.txt.tmpl', $vars, \$message)
|| ThrowTemplateError($template->error());
- $message =~ s/^\s+//gm;
+ # Remove the indenting that exists in messages.html.tmpl.
+ $message =~ s/^ //gm;
return $message;
}