diff options
author | Vitiko <[email protected]> | 2023-09-18 15:25:02 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2023-09-18 15:25:02 -0400 |
commit | e06aad7fc6658d7a04479e66b4efb3ce2626b3da (patch) | |
tree | 75c1116e4320a8b66ca2343cceabc0ff631eabfc | |
parent | b9648172ba4e5599350b408bad6a5fe54c082129 (diff) | |
download | bazarr-e06aad7fc6658d7a04479e66b4efb3ce2626b3da.tar.gz bazarr-e06aad7fc6658d7a04479e66b4efb3ce2626b3da.zip |
Update providers exception regex for Windowsv1.3.1-beta.0
-rw-r--r-- | bazarr/app/get_providers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/app/get_providers.py b/bazarr/app/get_providers.py index 8d10dc3be..2338fa753 100644 --- a/bazarr/app/get_providers.py +++ b/bazarr/app/get_providers.py @@ -30,7 +30,7 @@ from sonarr.blacklist import blacklist_log from utilities.analytics import event_tracker -_TRACEBACK_RE = re.compile(r'File "(.*?providers/.*?)", line (\d+)') +_TRACEBACK_RE = re.compile(r'File "(.*?providers[\\/].*?)", line (\d+)') def time_until_midnight(timezone): |