summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/refs/log.py')
-rw-r--r--git/refs/log.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index ac2fe6ea..fc962680 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -48,13 +48,13 @@ class RefLogEntry(tuple):
""":return: a string suitable to be placed in a reflog file"""
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)
+ return u"{} {} {} <{}> {!s} {}\t{}\n".format(self.oldhexsha,
+ self.newhexsha,
+ act.name,
+ act.email,
+ time[0],
+ altz_to_utctz_str(time[1]),
+ self.message)
@property
def oldhexsha(self):