diff options
author | zach%zachlipton.com <> | 2003-08-27 14:36:32 +0200 |
---|---|---|
committer | zach%zachlipton.com <> | 2003-08-27 14:36:32 +0200 |
commit | 4c4e35be44deca0c3facdcf3079d35f01c8946c6 (patch) | |
tree | 009460a912f49a5f8d000fb5a0f5dd021875155d | |
parent | 9ba963d10b32db31a0ca159c729d4ebe99746950 (diff) | |
download | bugzilla-4c4e35be44deca0c3facdcf3079d35f01c8946c6.tar.gz bugzilla-4c4e35be44deca0c3facdcf3079d35f01c8946c6.tar.xz |
Fix for bug 217256, "No Interdiff Notification message has two run on words." Patch adds
newlines where they are needed.
r=zach, a=justdave. Patch by Colin S. Ogilvie <bmo@colino.co.uk>
-rwxr-xr-x | checksetup.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl index cde336d74..7a1264a3e 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -475,8 +475,8 @@ if (!LocalVarExists('interdiffbin')) { if ($interdiff_executable =~ /no interdiff/ || $interdiff_executable eq '') { if (!$silent) { print "\nOPTIONAL NOTE: If you want to "; - print "be able to use the\n 'difference between two patches"; - print "feature of Bugzilla (requires\n the PatchReader Perl module"; + print "be able to use the\n 'difference between two patches' "; + print "feature of Bugzilla (requires\n the PatchReader Perl module "; print "as well), you should install\n patchutils from "; print "http://cyberelk.net/tim/patchutils/\n\n"; } |