Mercurial > public > mercurial-scm > hg
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 Sun Mar 18 19:41:28 2007 +0100 +++ b/hgext/mq.py Sun Mar 18 20:37:47 2007 +0100 @@ -1146,7 +1146,8 @@ 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()