add missing space in error message

wilder
David Faure 15 years ago
parent bd2f4b59e1
commit fff2d62215
  1. 4
      kdesrc-build

@ -1997,7 +1997,7 @@ sub git_stash_and_update
if ($status == -1 || $status & 127) {
die make_exception('Runtime',
"$module doesn't appear to be a git module when" .
"$module doesn't appear to be a git module when " .
"trying to see if there are changes.");
}
@ -2010,7 +2010,7 @@ sub git_stash_and_update
$status = pretending() ? 0 : system('git', 'diff', '--cached', '--quiet');
if ($status == -1 || $status & 127) {
die make_exception('Runtime',
"$module doesn't appear to be a git module when" .
"$module doesn't appear to be a git module when " .
"trying to see if there are changes.");
}
else {

Loading…
Cancel
Save