diff options
Diffstat (limited to 'cryptography/utils.py')
-rw-r--r-- | cryptography/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/utils.py b/cryptography/utils.py index 8fbcabc5..03c8c0e8 100644 --- a/cryptography/utils.py +++ b/cryptography/utils.py @@ -23,6 +23,7 @@ DeprecatedIn06 = DeprecationWarning def register_interface(iface): def register_decorator(klass): + verify_interface(iface, klass) iface.register(klass) return klass return register_decorator |