in module aes.py, I had to modify 4 lines from: if str(type(data)) != "<type 'string'>": to: if str(type(data)) != "<type 'str'>":
to get the module working properly.
Logged In: YES user_id=588604
Much better to use: if str(type(data)) != str(type("")):
Log in to post a comment.
Logged In: YES
user_id=588604
Much better to use:
if str(type(data)) != str(type("")):