Skip to content

Commit

Permalink
Merge tag 'v1.5.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Henjuro committed Nov 12, 2018
2 parents 593dae1 + 58fca55 commit 31c31cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#Changelog
* 1.5.3:
* Fixes:
* Fixed exception during ESI error handling, by calling a none existant method
* 1.5.2:
* Fixes:
* Fixed feedbackmessage using the wrong localization identifier
Expand Down
2 changes: 1 addition & 1 deletion waitlist/data/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.5.2-$Format:%h$"
version = "1.5.3-$Format:%h$"
2 changes: 1 addition & 1 deletion waitlist/sso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def repeated_verify(security: EsiSecurity, count: int=0,
try:
return security.verify()
except APIException as e:
if e.response.decode('utf-8').contains('SSO JSON failure'):
if 'SSO JSON failure' in e.response.decode('utf-8'):
logger.error('SSO JSON Failure, trying workaround...')
resp = security.refresh()
security.signal_token_updated.send(
Expand Down

0 comments on commit 31c31cc

Please sign in to comment.