summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-11-15 21:25:23 -0500
committerrsiddharth <s@ricketyspace.net>2019-11-15 21:40:56 -0500
commitdc1db33151f088dc9562a178d970ea620f5bc7fa (patch)
tree9f50761fc4d558ea1920d9bf439409b88d2493ce
parent8ab8a52a9c6f5e82e32c78725a0e2cc2363b1ff6 (diff)
nfsw/__init__.py: Disable strict slashes.
-rw-r--r--Makefile2
-rw-r--r--nfsw/__init__.py1
-rw-r--r--setup.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9a86b03..eebffb1 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ VENV_DIR=/usr/local/virtualenv/.nfsw
VENV_CMD=virtualenv-3
JSHINT=~/.npm-packages/bin/jshint
PRD_HOST=cygnus
-PRD_WHEEL=nfsw-0.1.0.dev2-py3-none-any.whl
+PRD_WHEEL=nfsw-0.1.0.dev3-py3-none-any.whl
HTTPD_CONF=etc/httpd.conf
ACME_CONF=etc/acme-client.conf
diff --git a/nfsw/__init__.py b/nfsw/__init__.py
index a47e1bf..15be294 100644
--- a/nfsw/__init__.py
+++ b/nfsw/__init__.py
@@ -25,6 +25,7 @@ def create_app(test_config=None):
else:
app.config.from_object(test_config)
+ app.url_map.strict_slashes = False
try:
os.makedirs(app.instance_path)
diff --git a/setup.py b/setup.py
index 3ba61fe..97ed6e4 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ with open('README.md', 'r') as f:
setup(
name='nfsw',
- version='0.1.0.dev2',
+ version='0.1.0.dev3',
license='ISC',
author='rsiddharth',
author_email='s@ricketyspace.net',