diff options
Diffstat (limited to 'dcoppython/test/signal.py')
-rw-r--r-- | dcoppython/test/signal.py | 4 |
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() |