add space after prompt in search_file

This commit is contained in:
2024-08-16 00:26:46 -04:00
parent 4d75ae5df6
commit 334a5abe02

View File

@@ -37,7 +37,7 @@ def select_path(filename, paths):
print(f"Multiple matches found for {filename}")
print("Please select target:")
print_num_list(paths)
c = input(f"Please select file to link to: (1-{l})")
c = input(f"Please select file to link to: (1-{l}) ")
return paths[int(c)-1]
def search_file(filename, path):