Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage
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
Commits
ff7aee90
Commit
ff7aee90
authored
Apr 1, 2015
by
Alexandre Beloin
Browse files
Options
Downloads
Plain Diff
Merge pull request #1696 from abeloin/hotfix-xem
XEM: Skip invalid entries
parents
e28f73f7
94dfd6b0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sickbeard/scene_exceptions.py
+5
-1
5 additions, 1 deletion
sickbeard/scene_exceptions.py
with
5 additions
and
1 deletion
sickbeard/scene_exceptions.py
+
5
−
1
View file @
ff7aee90
...
@@ -306,7 +306,11 @@ def _xem_exceptions_fetcher():
...
@@ -306,7 +306,11 @@ def _xem_exceptions_fetcher():
continue
continue
for
indexerid
,
names
in
parsedJSON
[
'
data
'
].
items
():
for
indexerid
,
names
in
parsedJSON
[
'
data
'
].
items
():
try
:
xem_exception_dict
[
int
(
indexerid
)]
=
names
xem_exception_dict
[
int
(
indexerid
)]
=
names
except
Exception
as
e
:
logger
.
log
(
u
"
XEM: Rejected entry: indexerid:{0}; names:{1}
"
.
format
(
indexerid
,
names
),
logger
.
WARNING
)
logger
.
log
(
u
"
XEM: Rejected entry error message:{0}
"
.
format
(
str
(
e
)),
logger
.
DEBUG
)
setLastRefresh
(
'
xem
'
)
setLastRefresh
(
'
xem
'
)
...
...
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