Skip to content

Commit b22705c

Browse files
author
Katie McCulloch
authored
Change self.ts --> self.timestamp to fix python error (#21)
1 parent b2561d2 commit b22705c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doltcli/dolt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class Commit(CommitT):
115115
"""
116116

117117
def __str__(self):
118-
return f"{self.ref}: {self.author} @ {self.ts}, {self.message}"
118+
return f"{self.ref}: {self.author} @ {self.timestamp}, {self.message}"
119119

120120
def is_merge(self):
121121
return isinstance(self.parents, tuple)

0 commit comments

Comments
 (0)