View Single Post
Old 05-08-2024, 02:20 PM   #666
eddardStark1942
Junior Member
eddardStark1942 began at the beginning.
 
Posts: 1
Karma: 10
Join Date: May 2024
Device: iPad
Hey, I see that in gather_filetype.py, there's an error in the regex for the 'azw8' branch:

The line:
Code:
elif orig_ext == ".azw8" and re.match("^{0-9A-F-}{36}$", orig_dir):
should as far as I can tell read
Code:
elif orig_ext == ".azw8" and re.match("^[0-9A-F-]{36}$", orig_dir):
eddardStark1942 is offline   Reply With Quote