From: Steven Walter Date: Mon, 6 Apr 2009 20:24:21 +0000 (-0400) Subject: cmd_log: use local time X-Git-Tag: v0.4~3 X-Git-Url: https://repo.or.cz/w/yap.git/commitdiff_plain/92614ef93ada1ad038bb59ca7b0e8043f47d906d cmd_log: use local time --- diff --git a/yap/yap.py b/yap/yap.py index 71f0d4b..7de4a12 100644 --- a/yap/yap.py +++ b/yap/yap.py @@ -690,7 +690,7 @@ starting at HEAD. while True: for hash in yield_output("git rev-list '%s' -- %s" % (rev, ' '.join(paths))): - commit = get_output("git show -M -C %s %s" + commit = get_output("git show --date=local -M -C %s %s" % (flags.get('-p', '--name-status'), hash), strip=False) commit = self._filter_log(commit)