]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/viewdocs.py
2 #---------------------------------------------------------------------------
5 from wxPython
.tools
import helpviewer
8 # Figure out the path where this app is located
9 if __name__
== '__main__':
10 basePath
= os
.path
.dirname(sys
.argv
[0])
12 basePath
= os
.path
.dirname(__file__
)
18 os
.path
.join(basePath
, 'wx.zip'),
19 os
.path
.join(basePath
, 'ogl.zip'),
22 # add any other .zip files found
23 for file in glob
.glob(os
.path
.join(basePath
, "*.zip")):
30 #---------------------------------------------------------------------------