Skip to content

Commit

Permalink
Fixed Import Error
Browse files Browse the repository at this point in the history
Fixed the ImportError: cannot import name 'dump_cookie' from 'werkzeug.utils'
Note: I use Werkzeug-1.0.0-py3.7
  • Loading branch information
WilderAngle authored Feb 21, 2020
1 parent 08d3313 commit f7f0e51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/secure_cookie/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def application(environ, start_response):
from werkzeug.datastructures import CallbackDict
from werkzeug.filesystem import get_filesystem_encoding
from werkzeug.posixemulation import rename
from werkzeug.utils import dump_cookie
from werkzeug.utils import parse_cookie
from werkzeug.http import dump_cookie
from werkzeug.http import parse_cookie
from werkzeug.wsgi import ClosingIterator


Expand Down

0 comments on commit f7f0e51

Please sign in to comment.