Mercurial > hg-stable
changeset 2909:75bcb8210a37
merge with jeffpc
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 15 Aug 2006 11:22:29 +0200 |
parents | 8b02af865990 (current diff) 2497fa1c6b76 (diff) |
children | 41f8b041893b |
files | hgext/hgk.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/hgk.py Mon Aug 14 22:48:03 2006 -0700 +++ b/hgext/hgk.py Tue Aug 15 11:22:29 2006 +0200 @@ -5,8 +5,9 @@ # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. -import time, sys, signal, os -from mercurial import hg, mdiff, fancyopts, commands, ui, util +from mercurial.demandload import * +demandload(globals(), 'time sys signal os') +demandload(globals(), 'mercurial:hg,mdiff,fancyopts,commands,ui,util') def dodiff(fp, ui, repo, node1, node2, files=None, match=util.always, changes=None, text=False):