# HG changeset patch # User Jeff Hammel # Date 1380388752 25200 # Node ID 9ec036da252e97acb7fba1ce54f29246234ccfab # Parent 59c94aaf311c18adb9c409cee2d31a39ef58f534 commitwatcher/agent.py diff -r 59c94aaf311c -r 9ec036da252e commitwatcher/agent.py --- a/commitwatcher/agent.py Sat Sep 28 09:44:26 2013 -0700 +++ b/commitwatcher/agent.py Sat Sep 28 10:19:12 2013 -0700 @@ -110,4 +110,7 @@ # get paths from diff paths = self.lsdiff(raw_rev) - print '%s :\n%s\n' % (revision, ', '.join(sorted(paths))) + print '%s :\n%s\n' % (revision, + '\n'.join([' %s' % path + for path in + sorted(paths)))