Format changes with black

This commit is contained in:
Andrew Senetar 2022-04-27 20:59:20 -05:00
parent 6a732a79a8
commit 81c593399e
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 3 additions and 1 deletions

View File

@ -172,7 +172,9 @@ def build_dmg(app_path, destfolder):
)
print("Building %s" % dmgname)
# UDBZ = bzip compression. UDZO (zip compression) was used before, but it compresses much less.
print_and_do('hdiutil create "{}" -format UDBZ -nocrossdev -srcdir "{}"'.format(op.join(destfolder, dmgname), dmgpath))
print_and_do(
'hdiutil create "{}" -format UDBZ -nocrossdev -srcdir "{}"'.format(op.join(destfolder, dmgname), dmgpath)
)
print("Build Complete")