mercurial/ignore.py
changeset 25166 7f53f305d4a6
parent 25165 581e2066d802
child 25167 6f7048cc2419
--- a/mercurial/ignore.py	Sat May 16 15:45:06 2015 -0700
+++ b/mercurial/ignore.py	Sat May 16 15:45:46 2015 -0700
@@ -11,7 +11,7 @@
 
 _commentre = None
 
-def readignorefile(filepath, warn):
+def readpatternfile(filepath, warn):
     '''parse a pattern file, returning a list of
     patterns. These patterns should be given to compile()
     to be validated and converted into a match function.'''
@@ -64,7 +64,7 @@
         if f in pats:
             continue
         try:
-            pats[f] = readignorefile(f, warn)
+            pats[f] = readpatternfile(f, warn)
         except IOError, inst:
             warn(_("skipping unreadable ignore file '%s': %s\n") %
                  (f, inst.strerror))