From 7d795771d34f605fb771634ff0ce3dcb1bd37fd8 Mon Sep 17 00:00:00 2001 From: Ozzieisaacs Date: Mon, 24 Feb 2020 19:02:38 +0100 Subject: [PATCH] Fix #1221 --- cps/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/about.py b/cps/about.py index d362da9b..fd52ca7b 100644 --- a/cps/about.py +++ b/cps/about.py @@ -49,7 +49,7 @@ about = flask.Blueprint('about', __name__) _VERSIONS = OrderedDict( - Platform = '{0.system} {0.release} {0.version} {0.processor} {0.machine}'.format(platform.uname()), + Platform = '{0[0]} {0[2]} {0[3]} {0[4]} {0[5]}'.format(platform.uname()), Python=sys.version, Calibre_Web=constants.STABLE_VERSION['version'] + ' - ' + constants.NIGHTLY_VERSION[0].replace('%','%%') + ' - '