We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f3ac4 commit 21d3520Copy full SHA for 21d3520
.ci/make_test_base
@@ -19,10 +19,7 @@ def prepare_extlist(value):
19
if "pg_pathman" in l:
20
# remove duplicates and reorder extension list to move pg_pathman to tail
21
nl = sorted(list(set(l)), cmp = lambda a,b: 1 if a=="pg_pathman" else -1)
22
- if len(nl) > 0:
23
- new_value = "'{}'".format(",".join(nl))
24
- else:
25
- new_value = "''"
+ new_value = "'{0}'".format(",".join(nl))
26
return new_value
27
else:
28
return value
0 commit comments