Skip to content

Commit

Permalink
(closes buildbot#607) make revision a string
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Oct 9, 2009
1 parent 1fc591e commit 33a0d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/svn_buildbot.py
Expand Up @@ -162,7 +162,7 @@ def getChanges(self, opts):
who = commands.getoutput('svnlook author %s "%s"' % (rev_arg, repo))
revision = opts.get('revision')
if revision is not None:
revision = int(revision)
revision = str(int(revision))

# see if we even need to notify buildbot by looking at filters first
changestring = '\n'.join(changed)
Expand Down

0 comments on commit 33a0d6a

Please sign in to comment.