From da9cd0c056c8275033fca84a1c8d49a8edb0c8ee Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 11 Nov 2022 17:41:30 +0900 Subject: superkaramba: convert examples to python3. Signed-off-by: Michele Calgaro --- superkaramba/examples/setIncomingData/2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'superkaramba/examples/setIncomingData/2.py') diff --git a/superkaramba/examples/setIncomingData/2.py b/superkaramba/examples/setIncomingData/2.py index a411b60..1656316 100644 --- a/superkaramba/examples/setIncomingData/2.py +++ b/superkaramba/examples/setIncomingData/2.py @@ -14,7 +14,7 @@ def initWidget(widget): # this resets the text to "" so we know we've never # received anything yet from the other theme name = karamba.getPrettyThemeName(widget) - print "2.py name: ", name + print("2.py name: ", name) karamba.setIncomingData(widget, name, "") karamba.redrawWidget(widget) @@ -47,7 +47,7 @@ def widgetUpdated(widget): # get the "message"... disp = karamba.getIncomingData(widget) - if disp == "": + if disp == "" or disp == b'': return # decode it... @@ -74,5 +74,5 @@ def widgetUpdated(widget): pass # This will be printed when the widget loads. -print "Loaded my python 2.py extension!" +print("Loaded my python 2.py extension!") -- cgit v1.2.1