summaryrefslogtreecommitdiff
path: root/git/objects/util.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-04 11:22:20 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-04 11:24:39 +0100
commit965a08c3f9f2fbd62691d533425c699c943cb865 (patch)
tree7bb0e6cf82ce6e972fea2dfe9043815694cb06d2 /git/objects/util.py
parentacac4bb07af3f168e10eee392a74a06e124d1cdd (diff)
downloadgitpython-965a08c3f9f2fbd62691d533425c699c943cb865.tar.gz
Applied autopep8
autopep8 -v -j 8 --max-line-length 120 --in-place --recursive
Diffstat (limited to 'git/objects/util.py')
-rw-r--r--git/objects/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/util.py b/git/objects/util.py
index 35073971..76a24a6f 100644
--- a/git/objects/util.py
+++ b/git/objects/util.py
@@ -157,8 +157,8 @@ def parse_date(string_date):
try:
dtstruct = time.strptime(date_part, fmt)
utctime = calendar.timegm((dtstruct.tm_year, dtstruct.tm_mon, dtstruct.tm_mday,
- tstruct.tm_hour, tstruct.tm_min, tstruct.tm_sec,
- dtstruct.tm_wday, dtstruct.tm_yday, tstruct.tm_isdst))
+ tstruct.tm_hour, tstruct.tm_min, tstruct.tm_sec,
+ dtstruct.tm_wday, dtstruct.tm_yday, tstruct.tm_isdst))
return int(utctime), offset
except ValueError:
continue