Check if folder_name is valid instead of just throwing exception.
This commit is contained in:
parent
9af7033c5e
commit
2260802d90
|
@ -125,6 +125,8 @@ def filter_files_extensions(files, extensions):
|
|||
|
||||
def get_full_path(folder_name, filename):
|
||||
global folder_names_and_paths
|
||||
if folder_name not in folder_names_and_paths:
|
||||
return None
|
||||
folders = folder_names_and_paths[folder_name]
|
||||
filename = os.path.relpath(os.path.join("/", filename), "/")
|
||||
for x in folders[0]:
|
||||
|
|
Loading…
Reference in New Issue