aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2020-05-04 00:58:07 +0200
committerGitHub <noreply@github.com>2020-05-04 00:58:07 +0200
commitcbbd641d6ee22f5f14edeefb80727f6a9f3c0cc3 (patch)
treeb842bfcbc9eba83f678cd8cf7b0837a6deb0e6c0
parentaa99088b228c9aa170385bff2734a3684b45ff10 (diff)
downloadasn1crypto-cbbd641d6ee22f5f14edeefb80727f6a9f3c0cc3.tar.gz
Fix a syntax typo
This worked for now, but is SyntaxError in Python 3.9.0a6: File "/usr/lib/python3.9/site-packages/asn1crypto/x509.py", line 1139 return', '.join( ^ SyntaxError: invalid string prefix (The Python change might actually be reverted before 3.9 final, but this can be fixed anyway.)
-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