diff options
author | Eric Wong <normalperson@yhbt.net> | 2013-03-08 09:46:41 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2013-03-08 09:53:57 +0000 |
commit | eae6cf5aa8ae2d8a90a99bbe4aeb01c29e01fd02 (patch) | |
tree | 68fd94f8db2336de2b320eb731c8d63bfaaa04a3 /perl | |
parent | 47543d161ebe550c412d99aaa6b9e7e5ae88fab5 (diff) | |
download | git-eae6cf5aa8ae2d8a90a99bbe4aeb01c29e01fd02.tar.gz |
git svn: consistent spacing after "W:" in warnings
All other instances of "W:"-prefixed warning messages have a space after
the "W:" to help with readability.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Git/SVN.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 46aeb85f6c..5273ee8867 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -1504,7 +1504,7 @@ sub lookup_svn_merge { my $top_commit = $gs->find_rev_before( $top, 1, $bottom ); unless ($top_commit and $bottom_commit) { - warn "W:unknown path/rev in svn:mergeinfo " + warn "W: unknown path/rev in svn:mergeinfo " ."dirprop: $source:$range\n"; next; } |