diff hgext/mq.py @ 4241:7c59ade0f0d6

hg qseries -m: guards file was not ignored
author Thomas Arendsen Hein <thomas@intevation.de>
date Sun, 18 Mar 2007 20:37:47 +0100
parents 417c2068cb92
children e1cdf5f6386e
line wrap: on
line diff
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -1146,7 +1146,8 @@ class queue:
                 for f in files:
                     fl = os.path.join(d, f)
                     if (fl not in self.series and
-                        fl not in (self.status_path, self.series_path)
+                        fl not in (self.status_path, self.series_path,
+                                   self.guards_path)
                         and not fl.startswith('.')):
                         msng_list.append(fl)
             msng_list.sort()