mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
chore: rename undefined variable in shopify_log
Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
@@ -39,7 +39,7 @@ def get_message(exception):
|
|||||||
if hasattr(exception, 'message'):
|
if hasattr(exception, 'message'):
|
||||||
message = exception.message
|
message = exception.message
|
||||||
elif hasattr(exception, '__str__'):
|
elif hasattr(exception, '__str__'):
|
||||||
message = e.__str__()
|
message = exception.__str__()
|
||||||
else:
|
else:
|
||||||
message = "Something went wrong while syncing"
|
message = "Something went wrong while syncing"
|
||||||
return message
|
return message
|
||||||
|
|||||||
Reference in New Issue
Block a user