[PATCH 09 of 17 V4] purge: access status fields by name rather than index

Martin von Zweigbergk martinvonz at gmail.com
Sun Oct 12 00:44:26 CDT 2014


# HG changeset patch
# User Martin von Zweigbergk <martinvonz at gmail.com>
# Date 1412357923 25200
#      Fri Oct 03 10:38:43 2014 -0700
# Node ID 8641d1b281999d291fd0ac4fbafe757907f7eb25
# Parent  582da2291ebac558dfd74bebec465caa90ac1625
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)


More information about the Mercurial-devel mailing list