mercurial/commands.py
changeset 17376 3738d6254bd3
parent 17370 3fe199579323
child 17388 54feb8d3bab7
child 17500 8ac8db8dc346
equal deleted inserted replaced
17375:499e284f3f32 17376:3738d6254bd3
  4175             for fn, b, size in repo.store.datafiles():
  4175             for fn, b, size in repo.store.datafiles():
  4176                 if size != 0 and fn[-slen:] == suffix and fn[:plen] == prefix:
  4176                 if size != 0 and fn[-slen:] == suffix and fn[:plen] == prefix:
  4177                     res.append(fn[plen:-slen])
  4177                     res.append(fn[plen:-slen])
  4178         finally:
  4178         finally:
  4179             lock.release()
  4179             lock.release()
  4180         for f in sorted(res):
  4180         for f in res:
  4181             ui.write("%s\n" % f)
  4181             ui.write("%s\n" % f)
  4182         return
  4182         return
  4183 
  4183 
  4184     if rev and node:
  4184     if rev and node:
  4185         raise util.Abort(_("please specify just one revision"))
  4185         raise util.Abort(_("please specify just one revision"))