X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=lib%2Futil.py;h=ac92c4dac813a9b219c6ef1d1aeb694a44ac7d08;hb=refs%2Fchanges%2F29%2F6429%2F1;hp=9d33aa609d52768fa44aad67b20c5d60566a0362;hpb=234c52e5ae5a0d799b85964509cfc5e9b5dfe5a6;p=osm%2FLW-UI.git diff --git a/lib/util.py b/lib/util.py index 9d33aa6..ac92c4d 100644 --- a/lib/util.py +++ b/lib/util.py @@ -78,7 +78,7 @@ class Util(object): def json2yaml(cls, object_json): """Converts a json object into a yaml representation""" log.debug('json2yaml') - return yaml.safe_dump(object_json, default_flow_style=False, indent=2) if not object_json is None else None + return yaml.safe_dump(object_json, default_flow_style=False, indent=4) if not object_json is None else None @classmethod def openfile(cls, filepath, mode='r', buffering=1):