changeset 14585:74bf9c84cfd0

mq: rename full_series_end to fullseriesend
author Adrian Buehlmann <adrian@cadifra.com>
date Mon, 13 Jun 2011 12:09:29 +0200
parents 3343a74eea4e
children af91cb281975
files hgext/mq.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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