2to3: port some missing print statements

This commit is contained in:
looooo
2018-05-19 09:48:36 +02:00
committed by wmayer
parent ab3ec6cc73
commit 9fb122008b
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ class SimpleParser:
def writeGraphViz(self,fileName):
print("Writing GraphViz file %s..."%fileName, end=' ')
print("Writing GraphViz file %s..."%fileName)
gvFile = open(fileName,'w')
gvFile.write('digraph G {\n node [fontname=Verdana,fontsize=12]\n node [style=filled]\n node [fillcolor="#EEEEEE"]\n node [color="#EEEEEE"]\n edge [color="#31CEF0"]\n')