From dc1db33151f088dc9562a178d970ea620f5bc7fa Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Fri, 15 Nov 2019 21:25:23 -0500 Subject: nfsw/__init__.py: Disable strict slashes. --- Makefile | 2 +- nfsw/__init__.py | 1 + setup.py | 2 +- 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', -- cgit v1.2.3