diff options
author | Schnuffle <schnuffle@gotec-cafe.de> | 2018-09-27 13:38:50 +0200 |
---|---|---|
committer | Schnuffle <schnuffle@gotec-cafe.de> | 2018-09-27 13:38:50 +0200 |
commit | dc5db01ff25dac6ec74ceea9b4d815a8c43cd7dd (patch) | |
tree | 7d60636ecf51d8cfef4340326b99b6506f4cccfd /scripts-dev | |
parent | Merge pull request #3963 from matrix-org/rav/get_state_for_room_docstring (diff) | |
download | synapse-dc5db01ff25dac6ec74ceea9b4d815a8c43cd7dd.tar.xz |
Replaced all occurences of e.message with str(e)
Signed-off-by: Schnuffle <schnuffle@github.com>
Diffstat (limited to 'scripts-dev')
-rwxr-xr-x | scripts-dev/dump_macaroon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/dump_macaroon.py b/scripts-dev/dump_macaroon.py index 6e45be75d6..fcc5568835 100755 --- a/scripts-dev/dump_macaroon.py +++ b/scripts-dev/dump_macaroon.py @@ -21,4 +21,4 @@ try: verifier.verify(macaroon, key) print "Signature is correct" except Exception as e: - print e.message + print str(e) |