diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-30 22:33:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-30 22:33:11 -0400 |
commit | db6f258745639cac9717c831a62003140480b692 (patch) | |
tree | 49f50a3954d5b92215638e0a6e1a36268ebce46c | |
parent | 582e52d3ca79d0d5d0335486718fe2167d6304cd (diff) | |
download | ikiwiki-db6f258745639cac9717c831a62003140480b692.tar ikiwiki-db6f258745639cac9717c831a62003140480b692.tar.gz |
fix new perl warning
-rw-r--r-- | IkiWiki/Plugin/bzr.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/bzr.pm b/IkiWiki/Plugin/bzr.pm index 99a07d2c0..e2b102dee 100644 --- a/IkiWiki/Plugin/bzr.pm +++ b/IkiWiki/Plugin/bzr.pm @@ -302,7 +302,7 @@ sub extract_timestamp (@) { open (my $out, "-|", @_); my @log = bzr_log($out); - if (length @log < 1) { + if (length(scalar(@log)) < 1) { return 0; } |