Submitter | Martin von Zweigbergk |
---|---|
Date | Oct. 5, 2014, 6:08 a.m. |
Message ID | <ddabc57548ae5b11f52a.1412489285@handduk2.mtv.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/6132/ |
State | Superseded |
Commit | e049338d1a7bab3ef6343a9611ac9b14942e9e10 |
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)