diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-01-10 18:50:57 +0900 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-01-13 03:28:05 +0100 |
commit | d85bd77116b2cf7e7565a0905b53ff0fa2a5b50e (patch) | |
tree | 4a50744dcf8fbfeee8098646bb75332b7e1bfaec /dcoppython/test/automate_presentation.py | |
parent | 3b188e184dc679e04975fbc2b572287fdcff0cca (diff) | |
download | tdebindings-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-x | dcoppython/test/automate_presentation.py | 6 |
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.") |