summaryrefslogtreecommitdiff
path: root/src/M2Crypto/ASN1.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/M2Crypto/ASN1.py')
-rw-r--r--src/M2Crypto/ASN1.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/M2Crypto/ASN1.py b/src/M2Crypto/ASN1.py
index b29326a..424945d 100644
--- a/src/M2Crypto/ASN1.py
+++ b/src/M2Crypto/ASN1.py
@@ -182,7 +182,8 @@ class ASN1_TIME(object):
self.asn1_time = asn1_time
self._pyfree = _pyfree
else:
- self.asn1_time = m2.asn1_time_new() # type: bytes (ASN1_TIME*)
+ # that's (ASN1_TIME*)
+ self.asn1_time = m2.asn1_time_new() # type: bytes
self._pyfree = 1
def __del__(self):