aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-09-29 21:06:18 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-09-29 21:06:18 -0400
commit685a0112306976e76125571c4cb12995df221a4a (patch)
treea6dc8cda311803949d255cc58cc53d8b2995aaa7 /src
parent44878a53ec4994730ab6e0cb2e070398794718ab (diff)
downloadcryptography-685a0112306976e76125571c4cb12995df221a4a.tar.gz
cryptography-685a0112306976e76125571c4cb12995df221a4a.tar.bz2
cryptography-685a0112306976e76125571c4cb12995df221a4a.zip
sigh, fix
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py
index 27bccbc6..c91bcb2f 100644
--- a/src/cryptography/utils.py
+++ b/src/cryptography/utils.py
@@ -78,7 +78,7 @@ def verify_interface(iface, klass):
raise InterfaceNotImplemented(
"{0}.{1}'s signature differs from the expected. Expected: "
"{2!r}. Received: {3!r}".format(
- klass, method, spec, actual
+ klass, method, sig, actual
)
)