From edcec38f628bc5c5bf69709e3f92db7bfa400d09 Mon Sep 17 00:00:00 2001 From: "J. Fronny" <6260391-JFronny@users.noreply.gitlab.com> Date: Sat, 20 Jun 2020 12:17:13 +0000 Subject: [PATCH] Update DownloadDataDepsInstall.py --- DownloadDataDepsInstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DownloadDataDepsInstall.py b/DownloadDataDepsInstall.py index 989db8a..0485dbc 100644 --- a/DownloadDataDepsInstall.py +++ b/DownloadDataDepsInstall.py @@ -4,5 +4,5 @@ from subprocess import call packages = [dist.project_name for dist in pkg_resources.working_set] if not "youtube-dl" in packages: - packages += ["youtube-dl"] + packages = ["youtube-dl"] + packages call("pip install --upgrade " + ' '.join(packages), shell=True) \ No newline at end of file