# HG changeset patch # User Adrian Buehlmann # Date 1307959769 -7200 # Node ID 74bf9c84cfd0ee60f66ea0422c1736230fd3af9c # Parent 3343a74eea4efa2c87331f44ea5d9140c34c3ab6 mq: rename full_series_end to fullseriesend diff -r 3343a74eea4e -r 74bf9c84cfd0 hgext/mq.py --- a/hgext/mq.py Mon Jun 13 12:07:46 2011 +0200 +++ b/hgext/mq.py Mon Jun 13 12:09:29 2011 +0200 @@ -913,7 +913,7 @@ raise util.Abort(_('cannot manage merge changesets')) commitfiles = m + a + r self.checktoppatch(repo) - insert = self.full_series_end() + insert = self.fullseriesend() wlock = repo.wlock() try: try: @@ -1693,7 +1693,7 @@ self.applied_dirty = 1 self.removeundo(repo) - def full_series_end(self): + def fullseriesend(self): if self.applied: p = self.applied[-1].name end = self.findseries(p) @@ -1844,7 +1844,7 @@ if not force: checkseries(patchname) if patchname not in self.series: - index = self.full_series_end() + i + index = self.fullseriesend() + i self.fullseries[index:index] = [patchname] self.parseseries() self.series_dirty = True