Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
sickrage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
26
Issues
26
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
SiCKRAGE
sickrage
Commits
53746c73
Commit
53746c73
authored
Apr 19, 2020
by
echel0n
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed name 'ModuleNotFoundError' is not defined error for older Python 3 versions
parent
5bd3790e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
.gitlab-ci.yml
.gitlab-ci.yml
+0
-4
sickrage/__init__.py
sickrage/__init__.py
+1
-1
No files found.
.gitlab-ci.yml
View file @
53746c73
...
...
@@ -118,10 +118,6 @@ release:build:master:
-
bumpversion --allow-dirty release package.json sickrage/version.txt
-
git checkout -b release-$(cat sickrage/version.txt)
-
yarn run build
# - python setup.py extract_messages
# - crowdin-cli-py upload sources
# - crowdin-cli-py download
# - python setup.py compile_catalog
-
git add --all
-
git commit -m "[TASK] Releasing v$(cat sickrage/version.txt)"
-
git fetch . release-$(cat sickrage/version.txt):master
...
...
sickrage/__init__.py
View file @
53746c73
...
...
@@ -221,7 +221,7 @@ def main():
try
:
try
:
from
sickrage.core
import
Core
except
ModuleNotFound
Error
:
except
Import
Error
:
print
(
'Attempting to install SiCKRAGE missing requirements using pip'
)
subprocess
.
check_call
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
"--no-cache-dir"
,
"-r"
,
REQS_FILE
])
from
sickrage.core
import
Core
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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