You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this_path = self.get_dynamic_path(part, mask, metadata)
if this_path:
path.append(this_path.strip())
self.get_dynamic_path seems to sometimes return an unexpected int, which then causes this error:
File "elodie/elodie/filesystem.py", line 543, in process_file
directory_name = self.get_folder_path(metadata)
File "elodie/elodie/filesystem.py", line 366, in get_folder_path
path.append(this_path.strip())
AttributeError: 'int' object has no attribute 'strip'
The text was updated successfully, but these errors were encountered:
self.get_dynamic_path
seems to sometimes return an unexpected int, which then causes this error:File "elodie/elodie/filesystem.py", line 543, in process_file
directory_name = self.get_folder_path(metadata)
File "elodie/elodie/filesystem.py", line 366, in get_folder_path
path.append(this_path.strip())
AttributeError: 'int' object has no attribute 'strip'
The text was updated successfully, but these errors were encountered: