Fix: Make config parser python 3 compatible

このコミットが含まれているのは:
Michal Micka
2013-10-03 04:13:00 +02:00
committed by Francisco Blas (klondike) Izquierdo Riera
コミット 6ad5efea6d

ファイルの表示

@@ -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):