diff options
Diffstat (limited to 'git/objects/commit.py')
| -rw-r--r-- | git/objects/commit.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/git/objects/commit.py b/git/objects/commit.py index 53af22cd..8f93d1b9 100644 --- a/git/objects/commit.py +++ b/git/objects/commit.py @@ -382,14 +382,14 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable):          c = self.committer          fmt = "%s %s <%s> %s %s\n"          write((fmt % ("author", aname, a.email, -                     self.authored_date, -                     altz_to_utctz_str(self.author_tz_offset))).encode(self.encoding)) +                      self.authored_date, +                      altz_to_utctz_str(self.author_tz_offset))).encode(self.encoding))          # encode committer          aname = c.name          write((fmt % ("committer", aname, c.email, -                     self.committed_date, -                     altz_to_utctz_str(self.committer_tz_offset))).encode(self.encoding)) +                      self.committed_date, +                      altz_to_utctz_str(self.committer_tz_offset))).encode(self.encoding))          if self.encoding != self.default_encoding:              write(("encoding %s\n" % self.encoding).encode('ascii')) | 
