comparison 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
comparison
equal deleted inserted replaced
4240:943f40b4da30 4241:7c59ade0f0d6
1144 for root, dirs, files in os.walk(self.path): 1144 for root, dirs, files in os.walk(self.path):
1145 d = root[len(self.path) + 1:] 1145 d = root[len(self.path) + 1:]
1146 for f in files: 1146 for f in files:
1147 fl = os.path.join(d, f) 1147 fl = os.path.join(d, f)
1148 if (fl not in self.series and 1148 if (fl not in self.series and
1149 fl not in (self.status_path, self.series_path) 1149 fl not in (self.status_path, self.series_path,
1150 self.guards_path)
1150 and not fl.startswith('.')): 1151 and not fl.startswith('.')):
1151 msng_list.append(fl) 1152 msng_list.append(fl)
1152 msng_list.sort() 1153 msng_list.sort()
1153 for x in msng_list: 1154 for x in msng_list:
1154 pfx = self.ui.verbose and ('D ') or '' 1155 pfx = self.ui.verbose and ('D ') or ''