Commit 2209002c authored by Tres Seaver's avatar Tres Seaver

Don't hard-wire forward-slash into sys.path (redux).

parent d8083e2c
......@@ -42,7 +42,7 @@ elif ihome:
else:
# No zope home, assume that it is the script directory
zhome = os.path.abspath(os.path.dirname(sys.argv[0]))
shome = os.path.join(zhome, 'lib/python')
shome = os.path.join(zhome, 'lib', 'python')
sys.path.insert(0, shome)
......
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