mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Use with
in macdeployqtplus
script.
This commit is contained in:
parent
4f3ac7ddd7
commit
e8babc4330
@ -674,9 +674,8 @@ else:
|
|||||||
if verbose >= 2:
|
if verbose >= 2:
|
||||||
print("+ Installing qt.conf +")
|
print("+ Installing qt.conf +")
|
||||||
|
|
||||||
f = open(os.path.join(applicationBundle.resourcesPath, "qt.conf"), "wb")
|
with open(os.path.join(applicationBundle.resourcesPath, "qt.conf"), "wb") as f:
|
||||||
f.write(qt_conf.encode())
|
f.write(qt_conf.encode())
|
||||||
f.close()
|
|
||||||
|
|
||||||
# ------------------------------------------------
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user