Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

taskbar: add win32com.shell to demandimport blacklist

borrow this workaround from hgtk

Changeset 38ff6ed0526d

Parent 92af0a06cf0e

by Steve Borho

Changes to one file · Browse files at 38ff6ed0526d Showing diff from parent 92af0a06cf0e Diff from another changeset...

Change 1 of 1 Show Entire File taskbar.py Stacked
 
18
19
20
21
 
 
 
22
23
24
 
18
19
20
 
21
22
23
24
25
26
@@ -18,7 +18,9 @@
 import winerror  import pywintypes   -from mercurial import demandimport ; demandimport.enable() +from mercurial import demandimport +demandimport.ignore.append('win32com.shell') +demandimport.enable()  from mercurial import ui  from thgutil import thread2, paths, shlib