Skip to content

Commit c849d8b

Browse files
fix
1 parent 1aad3dd commit c849d8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/madpack/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def get_dbver(con_args, portid):
190190
# 4.3.5+ from versions < 4.3.5
191191
match = re.search("Greenplum[a-zA-Z\s]*(\d+\.\d+\.\d+)", versionStr)
192192
elif portid == 'cloudberry':
193-
match = re.search("Cloudberry[a-zA-Z\s]*(\d+\.\d+\.\d+", versionStr)
193+
match = re.search("Cloudberry[a-zA-Z\s]*(\d+\.\d+\.\d+)", versionStr)
194194
return None if match is None else match.group(1)
195195
except Exception:
196196
error_(this, "Failed reading database version", True)

0 commit comments

Comments
 (0)