diff options
author | Eric Wong <normalperson@yhbt.net> | 2014-10-30 08:31:28 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2014-10-30 08:31:28 +0000 |
commit | da0bc948ac2e01652a150fd4a57cebad6143242c (patch) | |
tree | 9bc350c01df97e6c5a36cb9a854156fc663016b5 /perl | |
parent | 4ae9a7b966e61d25605b575163964f8375e37c9a (diff) | |
download | git-da0bc948ac2e01652a150fd4a57cebad6143242c.tar.gz git-da0bc948ac2e01652a150fd4a57cebad6143242c.tar.xz |
git-svn: add space after "W:" prefix in warning
And minor reformatting while we're in the area.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Git/SVN.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 893b9a8bb..d9a52a52d 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -1798,12 +1798,10 @@ sub find_extra_svn_parents { ); if ($ninc) { - warn "W:svn cherry-pick ignored ($spec) - missing " . + warn "W: svn cherry-pick ignored ($spec) - missing " . "$ninc commit(s) (eg $ifirst)\n"; } else { - warn - "Found merge parent ($spec): ", - $merge_tip, "\n"; + warn "Found merge parent ($spec): ", $merge_tip, "\n"; push @new_parents, $merge_tip; } } |