Use built-in print() instead of print statement

In python 3 print statement is not supported, so we should use
only print() functions.

Fixes bug 1226943

Change-Id: If88d77982ddbd1eb47265f15a27b747cd8011e76
This commit is contained in:
Chang Bo Guo
2013-09-18 00:56:48 -07:00
parent 6370a8790e
commit 9aaddd5b48
4 changed files with 13 additions and 13 deletions

View File

@@ -28,18 +28,18 @@ def main():
elif os.path.isfile(path):
convert_file(path)
else:
print 'File or directory not valid: %s' % path
print('File or directory not valid: %s' % path)
def convert_file(path):
f = open(path, 'r')
print template_format.convert_json_to_yaml(f.read())
print(template_format.convert_json_to_yaml(f.read()))
def convert_directory(dirpath):
for path in os.listdir(dirpath):
if not path.endswith('.template') and not path.endswith('.json'):
continue
yamlpath = re.sub('\..*$', '.yaml', path)
print 'Writing to %s' % yamlpath
print('Writing to %s' % yamlpath)
f = open(os.path.join(dirpath, path), 'r')
out = open(os.path.join(dirpath, yamlpath), 'w')
yml = template_format.convert_json_to_yaml(f.read())