summaryrefslogtreecommitdiffstats
path: root/superkaramba/examples/setIncomingData/2.py
diff options
context:
space:
mode:
Diffstat (limited to 'superkaramba/examples/setIncomingData/2.py')
-rw-r--r--superkaramba/examples/setIncomingData/2.py6
1 files changed, 3 insertions, 3 deletions
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!")