Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7.2, 0.7.3, and 0.7.4

0.7.2 shell: tortoisehg.dll should not be using os.popen()

This call was added by me in January before I understood how tortoisehg.py
was used as a both COM server and as a registration script. It's all kinds of
bad that it is trying to run python every time this script is executed.

fixes #113

Changeset 39d55a62a43e

Parent af9896ad2b4b

by Steve Borho

Changes to one file · Browse files at 39d55a62a43e Showing diff from parent af9896ad2b4b Diff from another changeset...

Change 1 of 1 Show Entire File tortoisehg.py Stacked
 
13
14
15
16
17
18
19
20
21
 
13
14
15
 
 
 
16
17
18
@@ -13,9 +13,6 @@
 if hasattr(sys, "frozen") and sys.frozen == 'dll':   import win32traceutil   -# ensure version has been recorded -os.popen('python setup.py --version') -  # shell extension classes  from tortoise.contextmenu import ContextMenuExtension  from tortoise.iconoverlay import ChangedOverlay, AddedOverlay, UnchangedOverlay