Mercurial > hg > config
view python/hg-tricks.py @ 365:6bbc4867a795
begin porting from shell function
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 11 Jul 2013 17:01:42 -0700 |
parents | a25eb7e42889 |
children | 11ac996b9c49 |
line wrap: on
line source
# check status / # check for outstanding changes output = self._call(['st']).strip() lines = [line for line in output.splitlines() if not line.startswith('?')] if lines: print "Outstanding changes:" print output raise AssertionError