X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/765a8ad0e324feadea26e6e310cf77f186396907..bc9c2a94fc68775e98d9bb3087c4d32cb2d112df:/bin/cmless.py diff --git a/bin/cmless.py b/bin/cmless.py index 44399c9..500edb6 100755 --- a/bin/cmless.py +++ b/bin/cmless.py @@ -4,7 +4,7 @@ # See LICENSE file for copyright and license details. # Python imports -import sys, os +import sys, os, urllib.parse # CMless imports import config, misc, template @@ -14,6 +14,7 @@ def main(): if os.environ['REQUEST_URI'][-1] == "/": os.environ['REQUEST_URI'] = os.environ['REQUEST_URI'] + config.default_page + os.environ['REQUEST_URI'] = urllib.parse.unquote(os.environ['REQUEST_URI']) content = misc.load_file(config.site_template_prefix + "/" + config.template_file) content = template.page_title(content)