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
79d8cb1e
Commit
79d8cb1e
authored
Mar 19, 2016
by
miigotu
Browse files
Options
Downloads
Patches
Plain Diff
Quick fixes
parent
1c8a38a1
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
sickbeard/clients/generic.py
+1
-1
1 addition, 1 deletion
sickbeard/clients/generic.py
sickbeard/tvcache.py
+1
-1
1 addition, 1 deletion
sickbeard/tvcache.py
sickrage/providers/GenericProvider.py
+3
-3
3 additions, 3 deletions
sickrage/providers/GenericProvider.py
with
5 additions
and
5 deletions
sickbeard/clients/generic.py
+
1
−
1
View file @
79d8cb1e
...
...
@@ -182,7 +182,7 @@ class GenericClient(object): # pylint: disable=too-many-instance-attributes
logger
.
log
(
u
'
Calling
'
+
self
.
name
+
'
Client
'
,
logger
.
DEBUG
)
if
not
self
.
auth
or
self
.
_get_auth
():
if
not
(
self
.
auth
or
self
.
_get_auth
()
)
:
logger
.
log
(
self
.
name
+
u
'
: Authentication Failed
'
,
logger
.
WARNING
)
return
r_code
...
...
This diff is collapsed.
Click to expand it.
sickbeard/tvcache.py
+
1
−
1
View file @
79d8cb1e
...
...
@@ -278,7 +278,7 @@ class TVCache(object):
def
searchCache
(
self
,
episode
,
manualSearch
=
False
,
downCurQuality
=
False
):
neededEps
=
self
.
findNeededEpisodes
(
episode
,
manualSearch
,
downCurQuality
)
return
neededEps
[
episode
]
if
episode
in
neededEps
else
[]
return
neededEps
.
get
(
episode
,
[]
)
def
listPropers
(
self
,
date
=
None
):
cache_db_con
=
self
.
_getDB
()
...
...
This diff is collapsed.
Click to expand it.
sickrage/providers/GenericProvider.py
+
3
−
3
View file @
79d8cb1e
...
...
@@ -269,7 +269,7 @@ class GenericProvider(object): # pylint: disable=too-many-instance-attributes
break
if
not
episode_wanted
:
logger
.
log
(
u
'
Ignoring result {0!s}.
'
.
format
(
(
title
)
)
,
logger
.
DEBUG
)
logger
.
log
(
u
'
Ignoring result {0!s}.
'
.
format
(
title
),
logger
.
DEBUG
)
continue
logger
.
log
(
u
'
Found result {0!s} at {1!s}
'
.
format
(
title
,
url
),
logger
.
DEBUG
)
...
...
@@ -293,8 +293,8 @@ class GenericProvider(object): # pylint: disable=too-many-instance-attributes
logger
.
log
(
u
'
Single episode result.
'
,
logger
.
DEBUG
)
elif
len
(
episode_object
)
>
1
:
episode_number
=
MULTI_EP_RESULT
logger
.
log
(
u
'
Separating multi-episode result to check for later - result contains episodes: {0!s}
'
.
format
(
str
(
parse_result
.
episode_numbers
)
)
,
logger
.
DEBUG
)
logger
.
log
(
u
'
Separating multi-episode result to check for later - result contains episodes: {0!s}
'
.
format
(
parse_result
.
episode_numbers
),
logger
.
DEBUG
)
elif
len
(
episode_object
)
==
0
:
episode_number
=
SEASON_RESULT
logger
.
log
(
u
'
Separating full season result to check for later
'
,
logger
.
DEBUG
)
...
...
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
sign in
to comment