Mercurial > hg > hq
changeset 22:7fd599dbef51
better output
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 11 Jul 2013 10:57:15 -0700 |
parents | aad5083f1117 |
children | 3593c85388a1 |
files | hq/main.py |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hq/main.py Thu Jul 11 10:53:03 2013 -0700 +++ b/hq/main.py Thu Jul 11 10:57:15 2013 -0700 @@ -82,6 +82,8 @@ pull from the root repository if mq is true, update the patch queue, if versioned """ + + print "Pulling %s" % self.root # check for outstanding changes output = self._status(self.root) if output: @@ -92,8 +94,10 @@ applied, unapplied = self._series() self._call('qpop', '--all') self._call(*(['pull'] + (repo and [repo] or []))) - # TODO: pull queue repo + if self._versioned(): + # pull queue repo + print "Pulling %s" % self.directory() if self.incoming(): print >> sys.stderr, "Incoming changes"