summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/automate_presentation.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/automate_presentation.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/automate_presentation.py')
-rwxr-xr-xdcoppython/test/automate_presentation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dcoppython/test/automate_presentation.py b/dcoppython/test/automate_presentation.py
index 0c75e108..a1833d2e 100755
--- a/dcoppython/test/automate_presentation.py
+++ b/dcoppython/test/automate_presentation.py
@@ -7,14 +7,14 @@ import pydcop
app = pydcop.anyAppCalled( "kpresenter" )
-if not app: raise RuntimeError, "Couldn't find a running KPresenter"
+if not app: raise RuntimeError("Couldn't find a running KPresenter")
doc = app.KoApplicationIface.getDocuments()[0]
view = doc.view(0)
startAction = view.action( "screen_start" )
-print "Starting Presentation %s" % doc.url()
+print("Starting Presentation %s" % doc.url())
startAction.activate()
@@ -27,4 +27,4 @@ while startAction.enabled() == 0:
act.activate()
view.screenStop()
-print "Presentation finished."
+print("Presentation finished.")