Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
SiCKRAGE
sickrage
Commits
5563b946
Commit
5563b946
authored
Oct 17, 2017
by
echel0n
Browse files
Fixed attribute error for postprocessing queue
parent
5f929177
Changes
2
Hide whitespace changes
Inline
Side-by-side
changelog.md
View file @
5563b946
# Changelog
-
*
98a5062 - 2017-10-17: Release v9.1.40
-
*
46ee39d - 2017-10-17: Fixed attribute error for postprocessing queue
-
*
fea50e2 - 2017-10-17: Release v9.1.40
-
*
94e71c8 - 2017-10-17: Fixed issue #88 - Show are truncated when show set in different language
-
*
e6e0237 - 2017-10-17: Added Anizb Newznab provider
-
*
f45988b - 2017-10-17: Refactored Newznab provider code Refactored locations of static files and mako templates
...
...
sickrage/core/queues/postprocessor.py
View file @
5563b946
...
...
@@ -54,7 +54,7 @@ class srPostProcessorQueue(srQueue):
:return: instance of PostProcessorItem or None
"""
for
__
,
__
,
cur_item
in
self
.
queue
+
[(
None
,
None
,
self
.
currentItem
)]:
if
isinstance
(
cur_item
,
PostProcessorItem
)
and
cur_item
.
dir
ectory
==
dirName
and
cur_item
.
mode
==
proc_type
:
if
isinstance
(
cur_item
,
PostProcessorItem
)
and
cur_item
.
dir
Name
==
dirName
and
cur_item
.
mode
==
proc_type
:
return
cur_item
return
None
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment