From cbbd641d6ee22f5f14edeefb80727f6a9f3c0cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 4 May 2020 00:58:07 +0200 Subject: 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.) --- asn1crypto/x509.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3