hgext/keyword.py
changeset 8209 a1a5a57efe90
parent 8112 6ee71f78497c
child 8225 46293a0c7e9f
--- a/hgext/keyword.py	Sun Apr 26 16:50:44 2009 -0500
+++ b/hgext/keyword.py	Sun Apr 26 16:50:44 2009 -0500
@@ -377,7 +377,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 ''