From b34150be6e64d3e103cfbd77600bdbb6d9f809ed Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Fri, 4 Mar 2022 16:58:33 +0100 Subject: [PATCH] dnf-json: fix small type mismatch in null value assignment --- dnf-json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnf-json b/dnf-json index 21269f852..d8daa9bea 100755 --- a/dnf-json +++ b/dnf-json @@ -269,7 +269,7 @@ class DnfJsonRequestHandler(BaseHTTPRequestHandler): return cache_folders def _send(self): - self.client_address = ('',) + self.client_address = ('', 0) def response_with_dnf_error(self, kind: str, reason: str): self._send()