summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
authorfirm1 <firm1@github.com>2015-01-07 13:51:48 +0100
committerfirm1 <firm1@github.com>2015-01-07 13:51:48 +0100
commitb6ed8d46c72366e111b9a97a7c238ef4af3bf4dc (patch)
tree29dd6ff057fdbfaef7b067718fa76ddabfa9522b /git/refs/log.py
parent0d4b4ea9c84198a9b6003611a3af00ee677d09a6 (diff)
downloadgitpython-b6ed8d46c72366e111b9a97a7c238ef4af3bf4dc.tar.gz
fix pep8
Diffstat (limited to 'git/refs/log.py')
-rw-r--r--git/refs/log.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index c6f9a218..ec19c1e8 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -39,8 +39,14 @@ class RefLogEntry(tuple):
"""Representation of ourselves in git reflog format"""
act = self.actor
time = self.time
- return u"{0} {1} {2} <{3}> {4!s} {5}\t{6}\n".format(self.oldhexsha, self.newhexsha, act.name, act.email,
- time[0], altz_to_utctz_str(time[1]), self.message).encode("utf-8")
+ return u"{0} {1} {2} <{3}> {4!s} {5}\t{6}\n".format(self.oldhexsha,
+ self.newhexsha,
+ act.name,
+ act.email,
+ time[0],
+ altz_to_utctz_str(time[1]),
+ self.message).encode("utf-8")
+
@property
def oldhexsha(self):
"""The hexsha to the commit the ref pointed to before the change"""