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
a946f8ac
Commit
a946f8ac
authored
Dec 2, 2014
by
echel0n
Browse files
Options
Downloads
Patches
Plain Diff
Fix for issue #1009 - added show and release_group attributes to properFinder module.
parent
e6389e47
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sickbeard/classes.py
+1
-1
1 addition, 1 deletion
sickbeard/classes.py
sickbeard/properFinder.py
+3
-0
3 additions, 0 deletions
sickbeard/properFinder.py
with
4 additions
and
1 deletion
sickbeard/classes.py
+
1
−
1
View file @
a946f8ac
...
...
@@ -107,7 +107,7 @@ class SearchResult:
def
__str__
(
self
):
if
self
.
provider
==
None
:
if
self
.
provider
is
None
:
return
"
Invalid provider, unable to print self
"
myString
=
self
.
provider
.
name
+
"
@
"
+
self
.
url
+
"
\n
"
...
...
This diff is collapsed.
Click to expand it.
sickbeard/properFinder.py
+
3
−
0
View file @
a946f8ac
...
...
@@ -136,6 +136,7 @@ class ProperFinder():
curProper
.
indexer
=
parse_result
.
show
.
indexer
# populate our Proper instance
curProper
.
show
=
parse_result
.
show
curProper
.
season
=
parse_result
.
season_number
if
parse_result
.
season_number
is
not
None
else
1
curProper
.
episode
=
parse_result
.
episode_numbers
[
0
]
curProper
.
release_group
=
parse_result
.
release_group
...
...
@@ -252,9 +253,11 @@ class ProperFinder():
# make the result object
result
=
curProper
.
provider
.
getResult
([
epObj
])
result
.
show
=
curProper
.
show
result
.
url
=
curProper
.
url
result
.
name
=
curProper
.
name
result
.
quality
=
curProper
.
quality
result
.
release_group
=
curProper
.
release_group
result
.
version
=
curProper
.
version
# snatch it
...
...
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