Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 14320:3438417a6657
scmutil: fold in wdutil
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 13 May 2011 14:07:16 -0500 |
parents | b33f3e35efb0 |
children | 003d63bb4fa5 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Fri May 13 14:06:28 2011 -0500 +++ b/mercurial/cmdutil.py Fri May 13 14:07:16 2011 -0500 @@ -8,16 +8,16 @@ from node import hex, nullid, nullrev, short from i18n import _ import os, sys, errno, re, tempfile -import util, scmutil, templater, patch, error, templatekw, wdutil +import util, scmutil, templater, patch, error, templatekw import match as matchmod import subrepo -expandpats = wdutil.expandpats -match = wdutil.match -matchall = wdutil.matchall -matchfiles = wdutil.matchfiles -addremove = wdutil.addremove -dirstatecopy = wdutil.dirstatecopy +expandpats = scmutil.expandpats +match = scmutil.match +matchall = scmutil.matchall +matchfiles = scmutil.matchfiles +addremove = scmutil.addremove +dirstatecopy = scmutil.dirstatecopy def parsealiases(cmd): return cmd.lstrip("^").split("|")