From 5271f192949a52b064ccb36b286b59646d00c4bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Fri, 16 Nov 2018 15:26:38 +0100 Subject: [PATCH] Windows: Fix build data is now a str --- win/misc/depcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/misc/depcheck.py b/win/misc/depcheck.py index 1f0057db2..768d93373 100644 --- a/win/misc/depcheck.py +++ b/win/misc/depcheck.py @@ -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:"):