Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 996c5ad

Browse files
authoredJul 4, 2017
Success when key error is None
1 parent 21c9dd9 commit 996c5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ignite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def __repr__(self):
274274
raise IgniteAuthorizationFailed(error)
275275
elif success_status == 3:
276276
raise IgniteSecurityCheckFailed(error)
277-
elif success_status == 1 or error != u'':
277+
elif success_status == 1 or error != None:
278278
raise IgniteFailed(error)
279279

280280
return response

0 commit comments

Comments
 (0)
Please sign in to comment.