From patchwork Sun Oct 5 06:08:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [08,of,15,v2] purge: access status fields by name rather than index From: Martin von Zweigbergk X-Patchwork-Id: 6132 Message-Id: To: mercurial-devel@selenic.com Date: Sat, 04 Oct 2014 23:08:05 -0700 # HG changeset patch # User Martin von Zweigbergk # Date 1412357923 25200 # Fri Oct 03 10:38:43 2014 -0700 # Node ID ddabc57548ae5b11f52a91e03190c90d008e6790 # Parent 8c36e6b906c1a85d5162f46b478cb1bcd897e8c9 purge: access status fields by name rather than index 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)