chore: rename undefined variable in shopify_log

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2019-10-29 13:30:13 +05:30
parent 4f7885f1aa
commit 702f9f929b
No known key found for this signature in database
GPG Key ID: 75507BE256F40CED

View File

@ -39,7 +39,7 @@ def get_message(exception):
if hasattr(exception, 'message'):
message = exception.message
elif hasattr(exception, '__str__'):
message = e.__str__()
message = exception.__str__()
else:
message = "Something went wrong while syncing"
return message