Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

prej: disable demandimport when loading diffhelpers

Refs #882

Changeset ca9a88ec810a

Parent 0a26b1001776

by Steve Borho

Changes to one file · Browse files at ca9a88ec810a Showing diff from parent 0a26b1001776 Diff from another changeset...

 
15
16
17
 
 
18
19
 
20
21
22
 
15
16
17
18
19
20
21
22
23
24
25
@@ -15,8 +15,11 @@
 # sources.    from mercurial.i18n import _ +from mercurial import demandimport +demandimport.disable()  from mercurial import base85, util, diffhelpers  from mercurial.patch import PatchError, copyfile +demandimport.enable()    import cStringIO, os, re, zlib  import bisect