From b3b84abed14417833f47a8c16cb46e1ea4ee1270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 7 Nov 2019 23:44:17 -0500 Subject: [PATCH] Added Python 2.7 end of support banner. --- views/menu.tpl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/views/menu.tpl b/views/menu.tpl index 798ae9213..561c31d79 100644 --- a/views/menu.tpl +++ b/views/menu.tpl @@ -227,6 +227,12 @@ % elif restart_required['configured'] == '1':
Bazarr Needs To Be Restarted To Apply Changes To General Settings. Click Here To Restart.
% end + + % from six import PY2 + % import datetime + % if PY2: +
Bazarr is now compatible with Python 3.6 and earlier. You should upgrade Python as we'll drop support for Python 2.7.x by the end of 2019.
+ % end