Submitter | Martin von Zweigbergk |
---|---|
Date | Oct. 10, 2014, 10:20 p.m. |
Message ID | <6aa0450f62f0411799be.1412979641@handduk2.mtv.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/6199/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/purge.py b/hgext/purge.py --- a/hgext/purge.py +++ b/hgext/purge.py @@ -102,7 +102,7 @@ status = repo.status(match=match, ignored=opts['all'], unknown=True) if removefiles: - for f in sorted(status[4] + status[5]): + for f in sorted(status.unknown + status.ignored): if act: ui.note(_('removing file %s\n') % f) remove(util.unlink, f)