From 2f4b335599369f7589fc2b14e5355f0e583dbf56 Mon Sep 17 00:00:00 2001 From: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com> Date: Sun, 6 Feb 2022 18:10:52 +0800 Subject: [PATCH] Revert "Fix: Handle filepath with spaces in RequirementsFile" This reverts commit d855b576 --- deploy/pip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/pip.py b/deploy/pip.py index 74e9b452f..6ae992b73 100644 --- a/deploy/pip.py +++ b/deploy/pip.py @@ -42,4 +42,4 @@ class PipManager(DeployConfig): hr1('Update Dependencies') arg = ' ' + ' '.join(arg) if arg else '' - self.execute(f'{self.pip} install -r "{self.requirements_file}"{arg}') + self.execute(f'{self.pip} install -r {self.requirements_file}{arg}')