Skip to content

Commit 4ab0958

Browse files
committed
Fix TypeError raised by debugprint call
- this error is caused by typo in options.py:424 debugprint call - debugprint function takes only one parameter so i think it should have been formated string - fix https://bugzilla.redhat.com/show_bug.cgi?id=1619593
1 parent 027ed86 commit 4ab0958

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ def __init__(self, name, value, supported, on_change):
421421
self.selector.set_active(selected)
422422
else:
423423
debugprint("Unknown value for %s: %s" % (name, value))
424-
debugprint("Choices:", supported)
424+
debugprint("Choices: %s" % (supported))
425425
if len(supported) > 0:
426426
debugprint("Selecting from choices:", supported[0])
427427
self.selector.set_active(0)

0 commit comments

Comments
 (0)