Mercurial > public > mercurial-scm > hg
diff mercurial/ui.py @ 3385:9e834d039681
Removed unused imports of mdiff and templater from ui.py
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 13 Oct 2006 19:35:08 +0200 |
parents | ab900698b832 |
children | ec6f400cff4d |
line wrap: on
line diff
--- a/mercurial/ui.py Fri Oct 13 09:58:55 2006 -0700 +++ b/mercurial/ui.py Fri Oct 13 19:35:08 2006 +0200 @@ -8,7 +8,7 @@ from i18n import gettext as _ from demandload import * demandload(globals(), "errno getpass os re socket sys tempfile") -demandload(globals(), "ConfigParser mdiff templater traceback util") +demandload(globals(), "ConfigParser traceback util") def dupconfig(orig): new = ConfigParser.SafeConfigParser(orig.defaults())