asn1rt: fix an invalid space character in the ASN.1 encoding of SEQ OF

This commit is contained in:
mich 2020-06-15 09:58:20 +02:00
parent 527477bcb0
commit ed0e6b6bf3
1 changed files with 1 additions and 1 deletions

View File

@ -2054,7 +2054,7 @@ class _CONSTRUCT_OF(ASN1Obj):
def _to_asn1(self):
if not self._val:
# empty list
return '{ }'
return '{ }'
else:
val = []
_par = self._cont._parent