Skip to content

Commit

Permalink
fix werkzurg import for new werkzurg version
Browse files Browse the repository at this point in the history
  • Loading branch information
hjlarry committed Jun 26, 2020
1 parent a541b95 commit 974fb57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flask_redisboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from werkzeug import url_quote_plus
from werkzeug.urls import url_quote_plus

from .redisboard import module

Expand Down
4 changes: 2 additions & 2 deletions flask_redisboard/redisboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
get_template_attribute,
)

from werkzeug import cached_property, url_quote_plus, url_unquote_plus

from werkzeug.utils import cached_property
from werkzeug.urls import url_quote_plus, url_unquote_plus
from .utils import (
_get_db_details,
_get_key_details,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def create_app():

setup(
name="Flask-Redisboard",
version="0.1.6",
version="0.1.7",
url="https://github.com/hjlarry/flask-redisboard",
license="MIT",
author="hjlarry",
Expand Down

0 comments on commit 974fb57

Please sign in to comment.