Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc3, 0.4rc4, and 0.4

setup: fix import error in py2exe binary on shelve module

when calling dialog via hgproc.exe

Changeset 037ba7eed96b

Parent e1145a7048d6

by TK Soh

Changes to one file · Browse files at 037ba7eed96b Showing diff from parent e1145a7048d6 Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
66
67
68
69
 
 
70
71
72
 
66
67
68
 
69
70
71
72
73
@@ -66,7 +66,8 @@
  # the dist directory created by py2exe.   # also needed is the GTK's share/themes (as dist/share/themes),   # for dialogs to display in MS-Windows XP theme. - "includes" : "pango,atk,pangocairo,cairo,gobject," + ",".join(hgextmods), + "includes" : "dbhash,pango,atk,pangocairo,cairo,gobject," + \ + ",".join(hgextmods),   }  }