diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-01-22 02:02:13 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-01-22 02:02:13 +0100 |
commit | 86480e58eafc1fa3486e03155ed34e02b4595a24 (patch) | |
tree | 0e8f64c4003ea558e946b7a3347688904b451635 /chalk/core/createdcop.py | |
parent | 135d005014a1e85295af4e379f026a361537ae5f (diff) | |
download | koffice-86480e58eafc1fa3486e03155ed34e02b4595a24.tar.gz koffice-86480e58eafc1fa3486e03155ed34e02b4595a24.zip |
Drop python2 support in scripts.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'chalk/core/createdcop.py')
-rwxr-xr-x | chalk/core/createdcop.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/core/createdcop.py b/chalk/core/createdcop.py index 337d9076..f51b3968 100755 --- a/chalk/core/createdcop.py +++ b/chalk/core/createdcop.py @@ -134,7 +134,7 @@ def parseHeader(headerfile, classname): if (function.endswith("= 0;")): function = function[:-4] + ";" - print "\t", function + print("\t", function) i+=1 @@ -162,7 +162,7 @@ def createDCOP(header): def main(args): for line in args[1:]: - print "Going to create a dcop interface for:", line[:-1] + print("Going to create a dcop interface for:", line[:-1]) createDCOP(line.strip()) if __name__=="__main__": |