From f3135db3fa324cf0b195ab7600a8f459860ea935 Mon Sep 17 00:00:00 2001 From: Dwayne Litzenberger Date: Sat, 16 Feb 2013 09:41:24 -0800 Subject: asn1: make DerObject into a new-style class --- lib/Crypto/Util/asn1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Crypto/Util/asn1.py b/lib/Crypto/Util/asn1.py index dd5ec31..ad38d47 100644 --- a/lib/Crypto/Util/asn1.py +++ b/lib/Crypto/Util/asn1.py @@ -26,7 +26,7 @@ from Crypto.Util.py3compat import * __all__ = [ 'DerObject', 'DerInteger', 'DerOctetString', 'DerNull', 'DerSequence', 'DerObjectId' ] -class DerObject: +class DerObject(object): """Base class for defining a single DER object. Instantiate this class ONLY when you have to decode a DER element. -- cgit v1.2.1