aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Heissler <joernheissler@users.noreply.github.com>2020-05-04 05:20:41 +0200
committerGitHub <noreply@github.com>2020-05-04 05:20:41 +0200
commit704a392c63a2abdf8272fd898e2835e211454945 (patch)
treeb842bfcbc9eba83f678cd8cf7b0837a6deb0e6c0
parentaa99088b228c9aa170385bff2734a3684b45ff10 (diff)
parentcbbd641d6ee22f5f14edeefb80727f6a9f3c0cc3 (diff)
downloadasn1crypto-704a392c63a2abdf8272fd898e2835e211454945.tar.gz
Merge pull request #181 from hroncok/patch-1
Fix a syntax typo
-rw-r--r--asn1crypto/x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1crypto/x509.py b/asn1crypto/x509.py
index 2cce9a5..16f7deb 100644
--- a/asn1crypto/x509.py
+++ b/asn1crypto/x509.py
@@ -1136,7 +1136,7 @@ class Name(Choice):
"""
if isinstance(value, list):
- return', '.join(
+ return ', '.join(
reversed([self._recursive_humanize(sub_value) for sub_value in value])
)
return value.native