Skip to content

Commit c8b1864

Browse files
fix
1 parent c849d8b commit c8b1864

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

requirements.txt

Whitespace-only changes.

src/madpack/madpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ def set_dynamic_library_path_in_database(dbver_split, madlib_library_path):
13461346
(portid == 'postgres' and is_rev_gte(dbver_split, get_rev_num('13.0')))):
13471347
libdir = libdir.decode()
13481348

1349-
libdir = libdir.strip()+'/postgresql'
1349+
libdir = str(libdir.strip(), encoding='utf-8')+'/postgresql'
13501350
paths.append(libdir)
13511351

13521352
paths.append(madlib_library_path)

0 commit comments

Comments
 (0)