# HG changeset patch # User Jeff Hammel # Date 1373565435 25200 # Node ID 7fd599dbef51c40bf61bb0253367111fac052470 # Parent aad5083f1117ba86ddb7401228502395ac6b7220 better output diff -r aad5083f1117 -r 7fd599dbef51 hq/main.py --- 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"