Mercurial > hg > CommitWatcher
comparison commitwatcher/agent.py @ 17:9ec036da252e
commitwatcher/agent.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 28 Sep 2013 10:19:12 -0700 |
parents | 59c94aaf311c |
children | 53533334469f |
comparison
equal
deleted
inserted
replaced
16:59c94aaf311c | 17:9ec036da252e |
---|---|
108 | 108 |
109 raw_rev = self.diff_url(revision) | 109 raw_rev = self.diff_url(revision) |
110 | 110 |
111 # get paths from diff | 111 # get paths from diff |
112 paths = self.lsdiff(raw_rev) | 112 paths = self.lsdiff(raw_rev) |
113 print '%s :\n%s\n' % (revision, ', '.join(sorted(paths))) | 113 print '%s :\n%s\n' % (revision, |
114 '\n'.join([' %s' % path | |
115 for path in | |
116 sorted(paths))) |