diff --git a/bazarr/scheduler.py b/bazarr/scheduler.py index 2fab39767..5d272f823 100644 --- a/bazarr/scheduler.py +++ b/bazarr/scheduler.py @@ -22,6 +22,7 @@ import pytz from tzlocal import get_localzone from calendar import day_name import pretty +from six import PY2 class Scheduler: @@ -188,7 +189,9 @@ class Scheduler: id='update_all_movies', name='Update all Movie Subtitles from disk', replace_existing=True) def __update_bazarr_task(self): - if not args.no_update: + if PY2: + pass + elif not args.no_update: task_name = 'Update Bazarr from source on Github' if args.release_update: task_name = 'Update Bazarr from release on Github' diff --git a/views/menu.tpl b/views/menu.tpl index 7314b4946..ed296bd53 100644 --- a/views/menu.tpl +++ b/views/menu.tpl @@ -237,7 +237,7 @@
Python deprecation warning
- Bazarr is now compatible with Python 3.6 and newer. You must upgrade Python as we don't support Python 2.x anymore. +

Bazarr won't update anymore until you upgrade Python!

Bazarr is now compatible with Python 3.6 and newer. You must upgrade Python as we don't support Python 2.x anymore.
% if os.name == 'posix':
If you are running under Docker, don't worry, we'll take care of this for you. Just pull the new image.