Skip to content
Snippets Groups Projects
Commit 5271f192 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Windows: Fix build

data is now a str
parent adfcfb1b
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ def get_dependencies(filename):
except Exception as error:
print(error)
return deps
data = data.decode("utf-8")
for line in data.splitlines():
line = line.strip()
if line.startswith("DLL Name:"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment