Skip to content

Commit f19f6e0

Browse files
authored
Merge pull request #50 from diegorusso/speed.python.org
Always show the branch name in the Revision
2 parents ae9e688 + c87452d commit f19f6e0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

codespeed/models.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,7 @@ def __str__(self):
145145
date = None
146146
else:
147147
date = self.date.isoformat(sep=" ")
148-
string = " - ".join(filter(None, (date, self.commitid, self.tag)))
149-
if self.branch.name != self.branch.project.default_branch:
150-
string += " - " + self.branch.name
148+
string = " - ".join(filter(None, (date, self.commitid, self.tag, self.branch.name)))
151149
return string
152150

153151
class Meta:

0 commit comments

Comments
 (0)