Mercurial > public > mercurial-scm > hg
comparison mercurial/cmdutil.py @ 14269:66257848c154
cmdutil: fix errors reported by pyflakes test
author | Sune Foldager <cryo@cyanite.org> |
---|---|
date | Sun, 08 May 2011 21:24:30 +0200 |
parents | df9ccd39828c |
children | d68ddccf276b |
comparison
equal
deleted
inserted
replaced
14260:00a881581400 | 14269:66257848c154 |
---|---|
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2 or any later version. | 6 # GNU General Public License version 2 or any later version. |
7 | 7 |
8 from node import hex, nullid, nullrev, short | 8 from node import hex, nullid, nullrev, short |
9 from i18n import _ | 9 from i18n import _ |
10 import os, sys, errno, re, glob, tempfile | 10 import os, sys, errno, re, tempfile |
11 import util, scmutil, templater, patch, error, templatekw, wdutil | 11 import util, scmutil, templater, patch, error, templatekw, wdutil |
12 import match as matchmod | 12 import match as matchmod |
13 import similar, revset, subrepo | 13 import revset, subrepo |
14 | 14 |
15 expandpats = wdutil.expandpats | 15 expandpats = wdutil.expandpats |
16 match = wdutil.match | 16 match = wdutil.match |
17 matchall = wdutil.matchall | 17 matchall = wdutil.matchall |
18 matchfiles = wdutil.matchfiles | 18 matchfiles = wdutil.matchfiles |