We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62e9543 commit 38318e5Copy full SHA for 38318e5
1 file changed
licensing/methods.py
@@ -64,8 +64,8 @@ def activate(token, rsa_pub_key, product_id, key, machine_code, fields_to_return
64
return (LicenseKey.from_response(response), response.message)
65
else:
66
return (None, "The signature check failed.")
67
- except Exception:
68
- return (None, "The signature check failed.")
+ except Exception as ex:
+ return (None, "An error occured: {0}".format(ex))
69
70
@staticmethod
71
def get_key(token, rsa_pub_key, product_id, key, fields_to_return = 0,\
0 commit comments