Skip to content

Commit

Permalink
fix decode call
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Nov 9, 2012
1 parent 7136a29 commit 6461e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/changes/hgpoller.py
Expand Up @@ -93,7 +93,7 @@ def _getRevDetails(self, rev):
env=os.environ, errortoo=False )
def process(output):
# fortunately, Mercurial issues all filenames one one line
date, author, files, comments = output.decode(self.encoding, errors="replace").split(
date, author, files, comments = output.decode(self.encoding, "replace").split(
os.linesep, 3)

if not self.usetimestamps:
Expand Down

0 comments on commit 6461e72

Please sign in to comment.