mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-15 10:25:13 +08:00
Revert "Make dogpile.cache using memory only under Windows"
This reverts commit 6f18c5888b
.
This commit is contained in:
parent
6f0c98e256
commit
e1a1aa2ac8
1 changed files with 2 additions and 4 deletions
|
@ -9,10 +9,8 @@ from list_subtitles import *
|
||||||
from utils import *
|
from utils import *
|
||||||
|
|
||||||
# configure the cache
|
# configure the cache
|
||||||
if os.name == 'nt':
|
#region.configure('dogpile.cache.dbm', arguments={'filename': os.path.join(os.path.dirname(__file__), 'data/cache/cachefile.dbm')})
|
||||||
region.configure('dogpile.cache.memory')
|
region.configure('dogpile.cache.memory')
|
||||||
else:
|
|
||||||
region.configure('dogpile.cache.dbm', arguments={'filename': os.path.join(os.path.dirname(__file__), 'data/cache/cachefile.dbm')})
|
|
||||||
|
|
||||||
def download_subtitle(path, language, hi, providers):
|
def download_subtitle(path, language, hi, providers):
|
||||||
video = scan_video(path)
|
video = scan_video(path)
|
||||||
|
|
Loading…
Reference in a new issue