changeset 14574:12fba7bcb4f1

mq: rename find_series to findseries
author Adrian Buehlmann <adrian@cadifra.com>
date Mon, 13 Jun 2011 11:54:25 +0200
parents d590ff1f22b2
children 845c864200d0
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:40:27 2011 +0200
+++ b/hgext/mq.py	Mon Jun 13 11:54:25 2011 +0200
@@ -360,7 +360,7 @@
     def join(self, *p):
         return os.path.join(self.path, *p)
 
-    def find_series(self, patch):
+    def findseries(self, patch):
         def matchpatch(l):
             l = l.split('#', 1)[0]
             return l.strip() == patch
@@ -746,7 +746,7 @@
 
         unknown = []
 
-        for (i, p) in sorted([(self.find_series(p), p) for p in patches],
+        for (i, p) in sorted([(self.findseries(p), p) for p in patches],
                              reverse=True):
             if i is not None:
                 del self.fullseries[i]
@@ -1696,7 +1696,7 @@
     def full_series_end(self):
         if self.applied:
             p = self.applied[-1].name
-            end = self.find_series(p)
+            end = self.findseries(p)
             if end is None:
                 return len(self.fullseries)
             return end + 1
@@ -2451,7 +2451,7 @@
     if patch is None:
         raise util.Abort(_('no patch to work with'))
     if args or opts.get('none'):
-        idx = q.find_series(patch)
+        idx = q.findseries(patch)
         if idx is None:
             raise util.Abort(_('no patch named %s') % patch)
         q.set_guards(idx, args)
@@ -2593,7 +2593,7 @@
     q.checkpatchname(name)
 
     ui.note(_('renaming %s to %s\n') % (patch, name))
-    i = q.find_series(patch)
+    i = q.findseries(patch)
     guards = q.guard_re.findall(q.fullseries[i])
     q.fullseries[i] = name + ''.join([' #' + g for g in guards])
     q.parse_series()