summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/automate_presentation.py
diff options
context:
space:
mode:
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.")