hgext/mq.py
changeset 4241 7c59ade0f0d6
parent 4239 417c2068cb92
child 4242 e1cdf5f6386e
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 ''