Skip to content

Commit

Permalink
print more useful things when a change is added to the db
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jun 5, 2011
1 parent 692dfce commit 15a2f02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/changes/changes.py
Expand Up @@ -131,9 +131,9 @@ def __setstate__(self, dict):
self.revlink = ""

def __str__(self):
return (u"Change(who=%r, files=%r, comments=%r, revision=%r, " +
return (u"Change(revision=%r, who=%r, branch=%r, comments=%r, " +
u"when=%r, category=%r, project=%r, repository=%r)") % (
self.who, self.files, self.comments, self.revision,
self.revision, self.who, self.branch, self.comments,
self.when, self.category, self.project, self.repository)

def asText(self):
Expand Down

0 comments on commit 15a2f02

Please sign in to comment.