Skip to content

Commit

Permalink
Merge pull request #1 from gkhaburzaniya/gkhaburzaniya-patch-1
Browse files Browse the repository at this point in the history
[boto#10] Let Attribute Errors allow a check for __exc
  • Loading branch information
gkhaburzaniya authored Apr 13, 2017
2 parents 49d8ed3 + 93d109e commit a4b8b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botoflow/data_converter/json_data_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _flow_obj_decoder(dct):
cls = getattr(module, attr_name)

# if an import error is raised
except ImportError:
except (ImportError, AttributeError):
# try and rescue objects with exception information by bundling them
# into a ImportError
if '__exc' in dct:
Expand Down

0 comments on commit a4b8b99

Please sign in to comment.