Skip to content

Commit

Permalink
Fixing test on Py3
Browse files Browse the repository at this point in the history
  • Loading branch information
aliabbasrizvi committed Sep 28, 2016
1 parent d6b4ee7 commit 94c221f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimizely/optimizely.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, datafile, event_dispatcher=None, logger=None, error_handler=N
self._validate_inputs(datafile, skip_json_validation)
except exceptions.InvalidInputException as error:
self.is_valid = False
logging.error(error.message)
logging.error(str(error))
return

try:
Expand Down

0 comments on commit 94c221f

Please sign in to comment.