From 6ad5efea6d7bc976a04705f47a4745f8e562d7a9 Mon Sep 17 00:00:00 2001 From: Michal Micka Date: Thu, 3 Oct 2013 04:13:00 +0200 Subject: [PATCH] Fix: Make config parser python 3 compatible --- src/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/config.py b/src/core/config.py index 733e23e..2e0fa1d 100755 --- a/src/core/config.py +++ b/src/core/config.py @@ -84,7 +84,7 @@ class Option(object): class SourceGenerator(object): def __init__(self, filename, cppStyle = True): - print "Generating %s..." % filename + print ("Generating %s..." % filename) self.f = open(filename, 'w'); def write_header(self, Comment = True):