summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-25 11:04:34 -0600
committerHarmon <Harmon758@gmail.com>2020-02-25 11:04:34 -0600
commitd39bd5345af82e3acbdc1ecb348951b05a5ed1f6 (patch)
treedfccb83bafd000d0704d473e1090a4158da136f9 /git/refs/log.py
parentac286162b577c35ce855a3048c82808b30b217a8 (diff)
downloadgitpython-d39bd5345af82e3acbdc1ecb348951b05a5ed1f6.tar.gz
Remove now unnecessary explicit Unicode string literal prefixes
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 965b26c7..fcd2c23c 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -37,13 +37,13 @@ class RefLogEntry(tuple):
""":return: a string suitable to be placed in a reflog file"""
act = self.actor
time = self.time
- return u"{} {} {} <{}> {!s} {}\t{}\n".format(self.oldhexsha,
- self.newhexsha,
- act.name,
- act.email,
- time[0],
- altz_to_utctz_str(time[1]),
- self.message)
+ return "{} {} {} <{}> {!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):