345fa66
From 399b3334d6519639cfe7f1c0457e2475b8ee5230 Mon Sep 17 00:00:00 2001
345fa66
From: Zdenek Dohnal <zdohnal@redhat.com>
345fa66
Date: Thu, 13 Oct 2022 14:03:37 +0200
345fa66
Subject: [PATCH] Fix debugprint() in options.py (fixes #291)
345fa66
345fa66
---
345fa66
 NEWS       | 4 ++++
345fa66
 options.py | 2 +-
345fa66
 2 files changed, 5 insertions(+), 1 deletion(-)
345fa66
345fa66
diff --git a/options.py b/options.py
345fa66
index d756f98d..d7c236de 100644
345fa66
--- a/options.py
345fa66
+++ b/options.py
345fa66
@@ -423,7 +423,7 @@ class OptionSelectOne(Option):
345fa66
             debugprint("Unknown value for %s: %s" % (name, value))
345fa66
             debugprint("Choices: %s" % (supported))
345fa66
             if len(supported) > 0:
345fa66
-                debugprint("Selecting from choices:", supported[0])
345fa66
+                debugprint("Selecting from choices: %s" % supported[0])
345fa66
                 self.selector.set_active(0)
345fa66
         self.selector.connect("changed", self.changed)
345fa66
 
345fa66
-- 
345fa66
2.39.2
345fa66