fix blank print for python2

This commit is contained in:
François Boulogne
2013-06-12 21:40:53 +02:00
parent eb9de1d7eb
commit 93f92e6a83
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ def remove_common_extensions(cy_bento, cy_setup):
def print_results(cy_bento, cy_setup):
def info(text):
print()
print('')
print(text)
print('-' * len(text))
+1 -1
View File
@@ -129,6 +129,6 @@ if __name__ == '__main__':
finally:
cd(startdir)
print()
print('')
print('Now verify the build in: %r' % dest)
print("If everything looks good, run 'git push' inside doc/gh-pages.")
+1 -1
View File
@@ -257,7 +257,7 @@ if __name__ == "__main__":
print(" Usage: coverage_generator.py [csv] [output]")
print(" csv - Path to csv file, defaults to ./coverage.csv")
print(" output - Ouput path, defaults to ./coverage_table.txt")
print()
print('')
sys.exit(0)
if len(sys.argv) == 2:
csv_path = os.path.abspath(sys.argv[1])