Skip to content

Commit 23756c0

Browse files
committed
fix regex for ArchiveFile
1 parent 0b3e4a4 commit 23756c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comiclib/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def is_dir(self):
8888
return self._is_dir
8989

9090
class ArchiveFile:
91-
support_formats = re.compile('.+\.(zip|rar|7z)$', re.IGNORECASE)
91+
support_formats = re.compile(r'.+\.(zip|rar|7z)$', re.IGNORECASE)
9292
executable = None
9393

9494
def __init__(self, file):

0 commit comments

Comments
 (0)