This commit is contained in:
EstrellaXD
2023-04-28 09:39:51 +08:00
parent b5f2821925
commit 853e8a1fb1

View File

@@ -39,7 +39,7 @@ class Renamer:
for f in info.files:
file_name = f.name
suffix = os.path.splitext(file_name)[-1]
if suffix in suffix_list:
if suffix.lower() in suffix_list:
file_list.append(file_name)
return file_list