Commit 0a725cd3 authored by 's avatar

modified fix for bug 1857 to use os.path.join

parent 57d4b13d
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
__doc__='''Shared classes and functions __doc__='''Shared classes and functions
$Id: Aqueduct.py,v 1.43 2001/01/12 16:42:49 chrism Exp $''' $Id: Aqueduct.py,v 1.44 2001/01/15 16:07:39 brian Exp $'''
__version__='$Revision: 1.43 $'[11:-2] __version__='$Revision: 1.44 $'[11:-2]
import Globals, os import Globals, os
from Globals import Persistent from Globals import Persistent
...@@ -99,7 +99,7 @@ from DocumentTemplate import HTML ...@@ -99,7 +99,7 @@ from DocumentTemplate import HTML
from string import strip, replace from string import strip, replace
dtml_dir=Globals.package_home(globals()) + '/dtml' dtml_dir=os.path.join(Globals.package_home(globals()), 'dtml')
InvalidParameter='Invalid Parameter' InvalidParameter='Invalid Parameter'
......
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