diff options
author | Erik Johnston <erikj@jki.re> | 2017-02-13 11:54:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 11:54:24 +0100 |
commit | e1a12e24d228dc3a9c915ae9168abc6165fa5f59 (patch) | |
tree | 8db999d4895531bdf3763937bdad569a290192e5 | |
parent | Merge pull request #1906 from tyler-smith/TS_fix_config_documentation (diff) | |
parent | Use signedjson.sign instead of syutil.crypto.jsonsign (diff) | |
download | synapse-e1a12e24d228dc3a9c915ae9168abc6165fa5f59.tar.xz |
Merge pull request #1907 from andrewshadura/develop
Use signedjson.sign instead of syutil.crypto.jsonsign
-rwxr-xr-x | contrib/cmdclient/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cmdclient/console.py b/contrib/cmdclient/console.py index 8bb03ce66a..4918fa1a9a 100755 --- a/contrib/cmdclient/console.py +++ b/contrib/cmdclient/console.py @@ -32,7 +32,7 @@ import urlparse import nacl.signing import nacl.encoding -from syutil.crypto.jsonsign import verify_signed_json, SignatureVerifyException +from signedjson.sign import verify_signed_json, SignatureVerifyException CONFIG_JSON = "cmdclient_config.json" |