Blame SOURCES/0001-Fix-TypeError-raised-by-debugprint-call.patch

758846
From 4ab0958643827777f526b180ece874d40009986d Mon Sep 17 00:00:00 2001
758846
From: Tomas Korbar <tkorbar@redhat.com>
758846
Date: Thu, 27 Sep 2018 17:27:39 +0200
758846
Subject: [PATCH] Fix TypeError raised by debugprint call
758846
758846
- this error is caused by typo in options.py:424 debugprint call
758846
- debugprint function takes only one parameter so i think it should
758846
have been formated string
758846
- fix https://bugzilla.redhat.com/show_bug.cgi?id=1619593
758846
---
758846
 options.py | 2 +-
758846
 1 file changed, 1 insertion(+), 1 deletion(-)
758846
758846
diff --git a/options.py b/options.py
758846
index 4dc0b1fe..d756f98d 100644
758846
--- a/options.py
758846
+++ b/options.py
758846
@@ -421,7 +421,7 @@ class OptionSelectOne(Option):
758846
             self.selector.set_active(selected)
758846
         else:
758846
             debugprint("Unknown value for %s: %s" % (name, value))
758846
-            debugprint("Choices:", supported)
758846
+            debugprint("Choices: %s" % (supported))
758846
             if len(supported) > 0:
758846
                 debugprint("Selecting from choices:", supported[0])
758846
                 self.selector.set_active(0)
758846
-- 
758846
2.17.2
758846