# HG changeset patch # User Jeff Hammel # Date 1380425597 25200 # Node ID 091fd9f40b05281c2952076e62b7b3e55af8c868 # Parent 53533334469fe9987812f2d0b9f918b4221b0479 commitwatcher/agent.py diff -r 53533334469f -r 091fd9f40b05 commitwatcher/agent.py --- a/commitwatcher/agent.py Sat Sep 28 10:55:49 2013 -0700 +++ b/commitwatcher/agent.py Sat Sep 28 20:33:17 2013 -0700 @@ -111,6 +111,6 @@ # get paths from diff paths = self.lsdiff(raw_rev) print '%s :\n%s\n' % (revision, - '\n'.join([' %s' % path - for path in - sorted(paths))) + '\n'.join([(' %s' % path) + for path in sorted(paths)])) +