Mercurial > hg > config
comparison python/hg-tricks.py @ 311:a25eb7e42889
new stub
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 May 2013 03:13:11 -0700 |
parents | |
children | 11ac996b9c49 |
comparison
equal
deleted
inserted
replaced
310:a6cd6900419e | 311:a25eb7e42889 |
---|---|
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 |