From 399b3334d6519639cfe7f1c0457e2475b8ee5230 Mon Sep 17 00:00:00 2001 From: Zdenek Dohnal Date: Thu, 13 Oct 2022 14:03:37 +0200 Subject: [PATCH] Fix debugprint() in options.py (fixes #291) --- NEWS | 4 ++++ options.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index a6438482..910e4696 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.5.19 changes +-------------- +- Fix `debugprint()` call in options.py (Issue #291) + 1.5.18 changes -------------- - Add into the .appdata.xml file (#269) diff --git a/options.py b/options.py index d756f98d..d7c236de 100644 --- a/options.py +++ b/options.py @@ -423,7 +423,7 @@ class OptionSelectOne(Option): debugprint("Unknown value for %s: %s" % (name, value)) debugprint("Choices: %s" % (supported)) if len(supported) > 0: - debugprint("Selecting from choices:", supported[0]) + debugprint("Selecting from choices: %s" % supported[0]) self.selector.set_active(0) self.selector.connect("changed", self.changed) -- 2.39.2