Make pep8-cfn-json2yaml PEP8 free

(cause those red dots in my editor were crying out too much to get it
fixed).

Change-Id: I414c65c9426b968ca6bc93c185571a55c932dd77
This commit is contained in:
Chmouel Boudjnah 2014-01-09 11:00:04 +01:00
parent 3754320f2b
commit a480910a54

View File

@ -14,13 +14,13 @@
# License for the specific language governing permissions and limitations
# under the License.
import sys
import os
import yaml
import json
import re
import sys
from heat.common import template_format
def main():
path = sys.argv[1]
if os.path.isdir(path):
@ -28,18 +28,20 @@ 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())