keyword: use status' names instead of index
authorChristian Ebert <blacktrash@gmx.net>
Sun, 07 Mar 2010 13:03:03 +0100
changeset 10603 f511df3a4357
parent 10602 94145b531cf9
child 10604 9a36d159595f
keyword: use status' names instead of index
hgext/keyword.py
--- a/hgext/keyword.py	Sun Mar 07 17:44:43 2010 +0100
+++ b/hgext/keyword.py	Sun Mar 07 13:03:03 2010 +0100
@@ -265,14 +265,14 @@
         raise util.Abort(_('outstanding uncommitted merge'))
     kwt = kwtools['templater']
     status = _status(ui, repo, kwt, *pats, **opts)
-    modified, added, removed, deleted = status[:4]
+    modified, added, removed, deleted, unknown, ignored, clean = status
     if modified or added or removed or deleted:
         raise util.Abort(_('outstanding uncommitted changes'))
     wlock = lock = None
     try:
         wlock = repo.wlock()
         lock = repo.lock()
-        kwt.overwrite(None, expand, status[6])
+        kwt.overwrite(None, expand, clean)
     finally:
         release(lock, wlock)