Fixes is_relative_to not being availible for 3.8

This commit is contained in:
Trenton Holmes 2022-10-08 12:50:16 -07:00 committed by Trenton H
parent 9aefff38e7
commit 77b3aa5011

View File

@ -117,9 +117,11 @@ def consume_file(
# Move it to consume directory to be picked up
# Otherwise, use the current parent to keep possible tags
# from subdirectories
if path.is_relative_to(settings.SCRATCH_DIR):
try:
# is_relative_to would be nicer, but new in 3.9
_ = path.relative_to(settings.SCRATCH_DIR)
save_to_dir = settings.CONSUMPTION_DIR
else:
except ValueError:
save_to_dir = path.parent
barcodes.save_to_dir(