Skip to content

Commit 9a79b06

Browse files
committed
Changing to joinpath() method
1 parent 49d53a3 commit 9a79b06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libqfieldsync/utils/file_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def update_symbols_to_relative_embedded(
261261

262262
if source_path.is_relative_to(home_path):
263263
relative_path = source_path.relative_to(home_path)
264-
destination_path_file = destination_path / relative_path
264+
destination_path_file = destination_path.joinpath(relative_path)
265265

266266
if destination_path_file.exists():
267267
symbol_layer.setPath(str(relative_path))

0 commit comments

Comments
 (0)