Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage-1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
SickRage-1
Commits
96b53dee
Commit
96b53dee
authored
8 years ago
by
Ofir
Committed by
miigotu
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Sorry about that.. Fixed breaking change. (#3825)
parent
2bdc968b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/subliminal/extensions.py
+1
-1
1 addition, 1 deletion
lib/subliminal/extensions.py
sickbeard/subtitles.py
+4
-5
4 additions, 5 deletions
sickbeard/subtitles.py
with
5 additions
and
6 deletions
lib/subliminal/extensions.py
+
1
−
1
View file @
96b53dee
...
...
@@ -93,7 +93,7 @@ provider_manager = RegistrableExtensionManager('subliminal.providers', [
'
opensubtitles = subliminal.providers.opensubtitles:OpenSubtitlesProvider
'
,
'
podnapisi = subliminal.providers.podnapisi:PodnapisiProvider
'
,
'
shooter = subliminal.providers.shooter:ShooterProvider
'
,
'
subscenter = subliminal.providers.subscenter:SubsCenterProvider
'
,
#
'subscenter = subliminal.providers.subscenter:SubsCenterProvider',
'
thesubdb = subliminal.providers.thesubdb:TheSubDBProvider
'
,
'
tvsubtitles = subliminal.providers.tvsubtitles:TVsubtitlesProvider
'
])
...
...
This diff is collapsed.
Click to expand it.
sickbeard/subtitles.py
+
4
−
5
View file @
96b53dee
...
...
@@ -47,11 +47,10 @@ if 'legendastv' not in provider_manager.names():
provider_manager
.
register
(
'
legendastv = subliminal.providers.legendastv:LegendasTVProvider
'
)
if
'
itasa
'
not
in
provider_manager
.
names
():
provider_manager
.
register
(
'
itasa = sickrage.providers.subtitle.itasa:ItaSAProvider
'
)
# Overwrite the outdated SubsCenter provider.
# This causes SR to not start for me
#if 'subscenter' in provider_manager.names():
# provider_manager.unregister('subscenter = subliminal.providers.subscenter:SubsCenterProvider')
#provider_manager.register('subscenter = sickrage.providers.subtitle.subscenter:SubsCenterProvider')
# We disabled the original subscenter in lib/subliminal/extensions.py since it's outdated.
# Until it gets an update in subliminal, we'll use a fixed provider.
if
'
subscenter
'
not
in
provider_manager
.
names
():
provider_manager
.
register
(
'
subscenter = sickrage.providers.subtitle.subscenter:SubsCenterProvider
'
)
subliminal
.
region
.
configure
(
'
dogpile.cache.memory
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment