mirror of
https://github.com/aljazceru/nostrdvm.git
synced 2025-12-24 01:14:24 +01:00
fix venv encoding on windows (an potentially other systems)
This commit is contained in:
@@ -158,7 +158,7 @@ class DVMTaskInterface:
|
||||
|
||||
@staticmethod
|
||||
def write_output(result, output):
|
||||
with open(os.path.abspath(output), 'w') as f:
|
||||
with open(os.path.abspath(output), 'w', encoding="utf8") as f:
|
||||
f.write(result)
|
||||
# f.close()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user