fix for a bug reported by nightman@email.de

This commit is contained in:
Miroslav Stampar 2011-06-29 17:49:59 +00:00
parent be9b8bca78
commit 9e453e8709

View File

@ -228,8 +228,8 @@ class Web:
else:
continue
localPath = os.path.normpath(localPath).rstrip('/')
uriPath = os.path.normpath(uriPath).rstrip('/')
localPath = posixpath.normpath(localPath).rstrip('/')
uriPath = posixpath.normpath(uriPath).rstrip('/')
# Upload the file stager
self.__webFileInject(stagerContent, stagerName, localPath)