Mercurial > hg-stable
diff mercurial/commands.py @ 15223:fc035e5370ca
pyflakes: clean up some import noise
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 11 Oct 2011 23:16:05 -0500 |
parents | 269374b89b74 |
children | 5d9a5b919863 |
line wrap: on
line diff
--- a/mercurial/commands.py Tue Oct 11 20:21:13 2011 -0500 +++ b/mercurial/commands.py Tue Oct 11 23:16:05 2011 -0500 @@ -1852,6 +1852,7 @@ % os.path.dirname(__file__)) try: import bdiff, mpatch, base85, osutil + dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes except Exception, inst: ui.write(" %s\n" % inst) ui.write(_(" One or more extensions could not be found"))