summaryrefslogtreecommitdiffstats
path: root/chalk/core/createdcop.py
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/core/createdcop.py')
-rwxr-xr-xchalk/core/createdcop.py4
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__":