# HG changeset patch # User Christian Ebert # Date 1267963383 -3600 # Node ID f511df3a4357e9b91ad61745884003e1587f795f # Parent 94145b531cf97bb8002781a0aa02b0e4d2eefe73 keyword: use status' names instead of index diff -r 94145b531cf9 -r f511df3a4357 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)