Mercurial > public > mercurial-scm > hg
diff hgext/bugzilla.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 1e0b94cfba0e |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/hgext/bugzilla.py Tue Dec 12 18:16:23 2006 -0600 +++ b/hgext/bugzilla.py Wed Dec 13 13:27:09 2006 -0600 @@ -52,10 +52,10 @@ # [usermap] # committer_email = bugzilla_user_name -from mercurial.demandload import * from mercurial.i18n import gettext as _ from mercurial.node import * -demandload(globals(), 'mercurial:cmdutil,templater,util os re time') +from mercurial import cmdutil, templater, util +import os, re, time MySQLdb = None