mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Support ruamel from Debian stretch
This commit is contained in:
parent
52eeb21763
commit
28098c32e3
1 changed files with 6 additions and 3 deletions
|
|
@ -982,9 +982,12 @@ def write_yaml(mf, app):
|
|||
return builds
|
||||
|
||||
yaml_app = _app_to_yaml(app)
|
||||
try:
|
||||
yaml = ruamel.yaml.YAML()
|
||||
yaml.indent(mapping=4, sequence=4, offset=2)
|
||||
yaml.dump(yaml_app, stream=mf)
|
||||
except AttributeError: # Debian/stretch's version does not have YAML()
|
||||
ruamel.yaml.round_trip_dump(yaml_app, mf, indent=4, block_seq_indent=2)
|
||||
|
||||
|
||||
build_line_sep = re.compile(r'(?<!\\),')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue