summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/dgit b/dgit
index 6357593..d768827 100755
--- a/dgit
+++ b/dgit
@@ -2185,7 +2185,7 @@ sub clogp_authline ($) {
my $date = getfield($clogp,'Date');
# try to pass through the changelog entry's timezone offset
my $tz = $date =~ m{ ([-+]\d{4})$} ? $1 : " +0000";
- my $date = cmdoutput qw(date), '+%s', qw(-d), $date;
+ $date = cmdoutput qw(date), '+%s', qw(-d), $date;
my $authline = "$author $date $tz";
$authline =~ m/$git_authline_re/o or
fail f_ "unexpected commit author line format \`%s'".