From 35328e25ac718047e1206e6cc73f805e0d253354 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc Date: Tue, 20 Feb 2024 13:25:08 +0300 Subject: [PATCH] Fixing if all() parameter type --- repo-converter/build/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo-converter/build/run.py b/repo-converter/build/run.py index 51f9302..32471b1 100644 --- a/repo-converter/build/run.py +++ b/repo-converter/build/run.py @@ -541,7 +541,7 @@ def subprocess_run(args, password=None, echo_password=None): # Handle the case of abandoned git svn lock files blocking fetch processes # We already know that no other git svn fetch processes are running, because we checked for that before spawning this fetch process # fatal: Unable to create '/sourcegraph/src-serve-root/svn.apache.org/wsl/zest/.git/svn/refs/remotes/git-svn/index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue. write-tree: command returned error: 128 - if all("Unable to create", "index.lock", "File exists") in std_err_without_password: + if all(["Unable to create", "index.lock", "File exists"]) in std_err_without_password: try: