summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/signal.py
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-01-10 18:50:57 +0900
committerSlávek Banko <slavek.banko@axis.cz>2023-01-13 03:28:05 +0100
commitd85bd77116b2cf7e7565a0905b53ff0fa2a5b50e (patch)
tree4a50744dcf8fbfeee8098646bb75332b7e1bfaec /dcoppython/test/signal.py
parent3b188e184dc679e04975fbc2b572287fdcff0cca (diff)
downloadtdebindings-d85bd77116b2cf7e7565a0905b53ff0fa2a5b50e.tar.gz
tdebindings-d85bd77116b2cf7e7565a0905b53ff0fa2a5b50e.zip
Drop support for python2.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcoppython/test/signal.py')
-rw-r--r--dcoppython/test/signal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dcoppython/test/signal.py b/dcoppython/test/signal.py
index 72aa1385..47d4038c 100644
--- a/dcoppython/test/signal.py
+++ b/dcoppython/test/signal.py
@@ -19,10 +19,10 @@ class MyObject(pydcop.DCOPServerObject):
self.setMethods( [('void test(TQString)', self.test)])
def test(self, data):
- print "New Weather for " + data
+ print("New Weather for " + data)
appid = pydcop.registerAs('dcopSignalTest')
-print "Server: %s starting" % appid
+print("Server: %s starting" % appid)
pytest = MyObject()