--- a/hgkw/keyword.py Sun Apr 26 15:04:03 2009 +0100
+++ b/hgkw/keyword.py Mon Apr 27 18:35:45 2009 +0100
@@ -379,7 +379,7 @@
kwt = kwtools['templater']
status = _status(ui, repo, kwt, opts.get('untracked'), *pats, **opts)
modified, added, removed, deleted, unknown, ignored, clean = status
- files = util.sort(modified + added + clean + unknown)
+ files = sorted(modified + added + clean + unknown)
wctx = repo[None]
kwfiles = [f for f in files if kwt.iskwfile(f, wctx.flags)]
cwd = pats and repo.getcwd() or ''