equal
deleted
inserted
replaced
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")) |