From 4ff0bcb21990e6ad76454289f213bf681995c1ff Mon Sep 17 00:00:00 2001 From: Anas Anjaria <499739+anasanjaria@users.noreply.github.com> Date: Tue, 5 Dec 2023 08:47:45 +0100 Subject: [PATCH] Remove redundant code (#948) --- postgres-appliance/bootstrap/clone_with_wale.py | 1 - 1 file changed, 1 deletion(-) diff --git a/postgres-appliance/bootstrap/clone_with_wale.py b/postgres-appliance/bootstrap/clone_with_wale.py index e8d31962d..c575daccc 100755 --- a/postgres-appliance/bootstrap/clone_with_wale.py +++ b/postgres-appliance/bootstrap/clone_with_wale.py @@ -57,7 +57,6 @@ def fix_output(output): started = None for line in output.decode('utf-8').splitlines(): if not started: - started = re.match(r'^name\s+last_modified\s+', line) started = re.match(r'^name\s+last_modified\s+', line) or re.match(r'^name\s+modified\s+', line) if started: line = line.replace(' modified ', ' last_modified ')