summaryrefslogtreecommitdiff
path: root/pyasn1/codec/cer/encoder.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2017-07-21 09:57:29 +0200
committerIlya Etingof <etingof@gmail.com>2017-07-21 09:57:29 +0200
commit0fc5b7798f1f4acbf1212337fa06bb5a6074b876 (patch)
tree1f7acac6e75dc2bf2519ccb6610b8c658133c61e /pyasn1/codec/cer/encoder.py
parent1c01144b72cc362a74d6e2bbe4e9c175ff4732ca (diff)
downloadpyasn1-git-0fc5b7798f1f4acbf1212337fa06bb5a6074b876.tar.gz
WIP: setup properties through metaclass
Diffstat (limited to 'pyasn1/codec/cer/encoder.py')
-rw-r--r--pyasn1/codec/cer/encoder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyasn1/codec/cer/encoder.py b/pyasn1/codec/cer/encoder.py
index d04df9d..17728c6 100644
--- a/pyasn1/codec/cer/encoder.py
+++ b/pyasn1/codec/cer/encoder.py
@@ -98,7 +98,7 @@ class SetOfEncoder(encoder.SequenceOfEncoder):
# from Set if they have the same tags&constraints?
if isinstance(client, univ.SequenceAndSetBase):
# Set
- namedTypes = client.getComponentType()
+ namedTypes = client.componentType
comps = []
while idx > 0:
idx -= 1