Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 7599:7bf7c073375e
lowercase ui.debug and assert output
This does not effect the log or status commands and should be okay
according to the compatibility rules.
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Sat, 03 Jan 2009 17:15:21 +0100 |
parents | f1af59451c0c |
children | 4dd7b28003d2 |
comparison
equal
deleted
inserted
replaced
7598:26adfaccdf73 | 7599:7bf7c073375e |
---|---|
1577 | 1577 |
1578 def changegroupinfo(self, nodes, source): | 1578 def changegroupinfo(self, nodes, source): |
1579 if self.ui.verbose or source == 'bundle': | 1579 if self.ui.verbose or source == 'bundle': |
1580 self.ui.status(_("%d changesets found\n") % len(nodes)) | 1580 self.ui.status(_("%d changesets found\n") % len(nodes)) |
1581 if self.ui.debugflag: | 1581 if self.ui.debugflag: |
1582 self.ui.debug(_("List of changesets:\n")) | 1582 self.ui.debug(_("list of changesets:\n")) |
1583 for node in nodes: | 1583 for node in nodes: |
1584 self.ui.debug("%s\n" % hex(node)) | 1584 self.ui.debug("%s\n" % hex(node)) |
1585 | 1585 |
1586 def changegroupsubset(self, bases, heads, source, extranodes=None): | 1586 def changegroupsubset(self, bases, heads, source, extranodes=None): |
1587 """This function generates a changegroup consisting of all the nodes | 1587 """This function generates a changegroup consisting of all the nodes |