Skip to content

Commit 80685c6

Browse files
committed
- fixed issue with code unpacking iterable object.
1 parent c843b8c commit 80685c6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

vcert/connection_cloud.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,11 @@ def search_by_thumbprint(self, thumbprint, timeout=DEFAULT_TIMEOUT):
545545
def read_zone_conf(self, zone):
546546
policy = self._get_template_by_id(zone)
547547
rs = policy.recommended_settings
548-
org, org_unit, locality, state, country = CertField("")
548+
org = CertField("")
549+
org_unit = CertField("")
550+
locality = CertField("")
551+
state = CertField("")
552+
country = CertField("")
549553
if rs:
550554
org = CertField(rs.subjectOValue)
551555
org_unit = CertField(rs.subjectOUValue)

0 commit comments

Comments
 (0)