summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2019-12-19 17:07:15 +0100
committerMarcel Hellkamp <marc@gsites.de>2019-12-19 17:07:15 +0100
commitdf1279c26782719fb71363d08e0a1702d7ccedaf (patch)
tree308368e08b68bf22cc02f1b378b56e90b0e4a278
parente543073b4769c614bf3ec6a0d84e0ffa16cfb914 (diff)
downloadbottle-defnull-1186.tar.gz
Revert "fix #1186: Bottle fails to find templates on windows"defnull-1186
This reverts commit 085f18615fe8ab63588eebfd25bb90337aac2ba0.
-rwxr-xr-xbottle.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index 2d05421..f157ffc 100755
--- a/bottle.py
+++ b/bottle.py
@@ -2695,7 +2695,8 @@ class ResourceManager(object):
res.add_path('./resources/', __file__)
"""
base = os.path.abspath(os.path.dirname(base or self.base))
- path = os.path.abspath(os.path.join(base, os.path.dirname(path))) + "/"
+ path = os.path.abspath(os.path.join(base, os.path.dirname(path)))
+ path += os.sep
if path in self.path:
self.path.remove(path)
if create and not os.path.isdir(path):
@@ -3837,7 +3838,7 @@ class BaseTemplate(object):
"Refer to templates with names or paths relative to the lookup path.")
for spath in lookup:
- spath = os.path.abspath(spath) + "/"
+ spath = os.path.abspath(spath) + os.sep
fname = os.path.abspath(os.path.join(spath, name))
if not fname.startswith(spath): continue
if os.path.isfile(fname): return fname