From 9764205d859431d6d8cf31d27852d5154b295e7b Mon Sep 17 00:00:00 2001 From: DJSchaffner Date: Wed, 21 Oct 2020 15:01:55 +0200 Subject: [PATCH] - Fixed tool not working in paths that contain spaces --- src/logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logic.py b/src/logic.py index d52329b..2a234d8 100644 --- a/src/logic.py +++ b/src/logic.py @@ -277,7 +277,7 @@ def _download_depot(self, username: str, password: str, version: int, depot_id: """Download a specific depot using the manifest id from steam using the given credentials.""" success = False depot_downloader_path = str(utils.resource_path("DepotDownloader/DepotDownloader.dll").absolute()) - args = ["dotnet", depot_downloader_path, + args = ["dotnet", f'"{depot_downloader_path}"', "-app", str(self.app_id), "-depot", str(depot_id), "-manifest", str(manifest_id),