Kaydet (Commit) 316ba5d2 authored tarafından Jack Jansen's avatar Jack Jansen

Adapted to os and imp changes

üst d40f3c60
...@@ -50,7 +50,7 @@ home folder. ...@@ -50,7 +50,7 @@ home folder.
import imp import imp
cwd = os.getcwd() cwd = os.getcwd()
tblibname = os.path.join(cwd, "toolboxmodules.slb") tblibname = os.path.join(cwd, "toolboxmodules.slb")
if not os.exists(tblibname): if not os.path.exists(tblibname):
print """ print """
I cannot find the 'toolboxmodules.slb' file in the PlugIns directory. I cannot find the 'toolboxmodules.slb' file in the PlugIns directory.
Start afresh from a clean distribution. Start afresh from a clean distribution.
...@@ -58,7 +58,7 @@ Start afresh from a clean distribution. ...@@ -58,7 +58,7 @@ Start afresh from a clean distribution.
sys.exit(1) sys.exit(1)
try: try:
for wtd in ["Ctl", "Dlg", "Evt", "Qd", "Res", "Win"]: for wtd in ["Ctl", "Dlg", "Evt", "Qd", "Res", "Win"]:
imp.load_dynamic_module(wtd, tblibname, None) imp.load_dynamic(wtd, tblibname)
except ImportError: except ImportError:
print """ print """
I cannot load the toolbox modules by hand. Are you sure you are I cannot load the toolbox modules by hand. Are you sure you are
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment