aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hyperui/hyperuilib/shared/dataresource.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hyperui/hyperuilib/shared/dataresource.py')
-rw-r--r--examples/hyperui/hyperuilib/shared/dataresource.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hyperui/hyperuilib/shared/dataresource.py b/examples/hyperui/hyperuilib/shared/dataresource.py
index 3c2e244..28a101f 100644
--- a/examples/hyperui/hyperuilib/shared/dataresource.py
+++ b/examples/hyperui/hyperuilib/shared/dataresource.py
@@ -56,7 +56,7 @@ class Resource(object):
f = d._pixmapPrefix + path
p = QPixmap(f)
if p.isNull():
- print "Pixmap not found: ", f
+ print("Pixmap not found: " + f)
return p
@@ -78,7 +78,7 @@ class Resource(object):
if d._settings.contains(key):
return d._settings.value(key, value)
else:
- print "Resource: key '%s' not found" % key
+ print("Resource: key '%s' not found" % key)
@staticmethod
def intValue(key, value=0):