Mercurial > hg-stable
changeset 14579:f7b25764d974
mq: rename explain_pushable to explainpushable
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Mon, 13 Jun 2011 12:00:56 +0200 |
parents | 28a2646f3b81 |
children | 92101ea35015 |
files | hgext/mq.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Mon Jun 13 11:59:35 2011 +0200 +++ b/hgext/mq.py Mon Jun 13 12:00:56 2011 +0200 @@ -464,7 +464,7 @@ return False, ' '.join(map(repr, pos)) return True, '' - def explain_pushable(self, idx, all_patches=False): + def explainpushable(self, idx, all_patches=False): write = all_patches and self.ui.write or self.ui.warn if all_patches or self.ui.verbose: if isinstance(idx, str): @@ -598,7 +598,7 @@ return (1, None) pushable, reason = self.pushable(patch) if not pushable: - self.explain_pushable(patch, all_patches=True) + self.explainpushable(patch, all_patches=True) continue info = mergeq.isapplied(patch) if not info: @@ -664,7 +664,7 @@ for patchname in series: pushable, reason = self.pushable(patchname) if not pushable: - self.explain_pushable(patchname, all_patches=True) + self.explainpushable(patchname, all_patches=True) continue self.ui.status(_("applying %s\n") % patchname) pf = os.path.join(patchdir, patchname) @@ -1542,7 +1542,7 @@ pushable, reason = self.pushable(i) if pushable: unapplied.append((i, self.series[i])) - self.explain_pushable(i) + self.explainpushable(i) return unapplied def qseries(self, repo, missing=None, start=0, length=None, status=None, @@ -1715,7 +1715,7 @@ p, reason = self.pushable(i) if p: break - self.explain_pushable(i) + self.explainpushable(i) return i if self.applied: p = self.applied[-1].name