Skip to content

Commit 8ea07f6

Browse files
authored
Update generate_extensions_function.py
1 parent 171a1cf commit 8ea07f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/generate_extensions_function.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
function_map = {}
2828
for extension in reader:
2929
extension_name = extension[0]
30-
print("Install/Load " + extension_name)
30+
print("Load " + extension_name)
3131
load = f"LOAD /tmp/{extension_name};"
32-
extension_functions = os.popen(f'{duckdb_path} -csv -c "{install}{load}{get_func}" ').read().split("\n")[1:-1]
32+
extension_functions = os.popen(f'{duckdb_path} -csv -c "{load}{get_func}" ').read().split("\n")[1:-1]
3333
function_map.update({
3434
extension_function: extension_name
3535
for extension_function in (set(extension_functions) - base_functions)

0 commit comments

Comments
 (0)