diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-06 18:36:09 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-06 19:11:15 -0700 |
commit | 64434b02ca50c2a6324caa1355559bd881ba687e (patch) | |
tree | a16fbb9f78ec0b027b13d723a30873f4aaeb92ad /youtube/__init__.py | |
parent | 24553bfb4f1a5f28f6d51320d2cf02380281124a (diff) | |
download | yt-local-64434b02ca50c2a6324caa1355559bd881ba687e.tar.lz yt-local-64434b02ca50c2a6324caa1355559bd881ba687e.tar.xz yt-local-64434b02ca50c2a6324caa1355559bd881ba687e.zip |
Convert channel page to flask framework
Diffstat (limited to 'youtube/__init__.py')
-rw-r--r-- | youtube/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube/__init__.py b/youtube/__init__.py index 0df56d1..faab170 100644 --- a/youtube/__init__.py +++ b/youtube/__init__.py @@ -1,2 +1,3 @@ import flask -yt_app = flask.Flask(__name__)
\ No newline at end of file +yt_app = flask.Flask(__name__) +yt_app.url_map.strict_slashes = False |