mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
11 lines
487 B
Diff
11 lines
487 B
Diff
--- a/subliminal/providers/legendastv.py
|
|
+++ b/subliminal/providers/legendastv.py
|
|
@@ -161,7 +161,7 @@ class LegendasTVProvider(Provider):
|
|
|
|
# Provider needs UNRAR installed. If not available raise ConfigurationError
|
|
try:
|
|
- rarfile.custom_check([rarfile.UNRAR_TOOL], True)
|
|
+ rarfile.tool_setup(unrar=False, unar=False, bsdtar=True, force=True)
|
|
except rarfile.RarExecError:
|
|
raise ConfigurationError('UNRAR tool not available')
|