diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-09-10 16:21:03 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-09-10 16:21:03 -0400 |
commit | 60111384a9c178b03cd778c298e28953ca80177b (patch) | |
tree | e028c54d0e77c1fa17733e115ccc156d948cc057 | |
parent | 73224daf2c4da0c06e1e697a00a8d6136067d87f (diff) |
formatting
-rw-r--r-- | IkiWiki/Plugin/cvs.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/cvs.pm b/IkiWiki/Plugin/cvs.pm index c891174e0..d44ded505 100644 --- a/IkiWiki/Plugin/cvs.pm +++ b/IkiWiki/Plugin/cvs.pm @@ -298,7 +298,8 @@ sub rcs_recentchanges($) { system("env TZ=UTC cvsps -q --cvs-direct -z 30 -x >$tmpfile"); if ($? == -1) { error "couldn't run cvsps: $!\n"; - } elsif (($? >> 8) != 0) { + } + elsif (($? >> 8) != 0) { error "cvsps exited " . ($? >> 8) . ": $!\n"; } |