From 7821f08e2e0f89d5331cf4c27c28066a2f86421b Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Nov 22 2019 18:02:21 +0000 Subject: fix unknown variable used Signed-off-by: Nils Philippsen --- diff --git a/distgit_bugzilla_sync/script.py b/distgit_bugzilla_sync/script.py index 58727ba..4bf5ecc 100644 --- a/distgit_bugzilla_sync/script.py +++ b/distgit_bugzilla_sync/script.py @@ -267,7 +267,7 @@ class BugzillaProxy: ) except xmlrpc.client.Fault as e: # Output something useful in args - e.args = (data, e.faultCode, e.faultString) + e.args = (new_poc, e.faultCode, e.faultString) raise except xmlrpc.client.ProtocolError as e: e.args = ('ProtocolError', e.errcode, e.errmsg)