annotate python/hg-tricks.py @ 383:8d1ad56761b0
this still, somehow, eludes my tired brain
author |
Jeff Hammel <jhammel@mozilla.com> |
date |
Fri, 26 Jul 2013 05:56:18 -0700 (2013-07-26) |
parents |
a25eb7e42889 |
children |
11ac996b9c49 |
rev |
line source |
311
|
1 # check status
|
|
2 / # check for outstanding changes
|
|
3 output = self._call(['st']).strip()
|
|
4 lines = [line for line in output.splitlines()
|
|
5 if not line.startswith('?')]
|
|
6 if lines:
|
|
7 print "Outstanding changes:"
|
|
8 print output
|
|
9 raise AssertionError
|