Skip to content

Commit

Permalink
Release 2.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Valsecchi committed Jan 23, 2019
1 parent d6a911c commit 9fefa50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c2cwsgiutils/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def is_auth(request: pyramid.request.Request, env_name: Any=None, config_name: A
secret = request.headers.get('X-API-Key')

if secret is not None:
if secret == "":
if secret == "": # nosec
# logout
request.response.delete_cookie(SECRET_ENV)
return False
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = '2.16.0'
VERSION = '2.17.0'
HERE = os.path.abspath(os.path.dirname(__file__))
INSTALL_REQUIRES = [
pkg.split('==')[0]
Expand Down

0 comments on commit 9fefa50

Please sign in to comment.