diff --git a/aqt/about.py b/aqt/about.py index 01adc8cd1..1006477d1 100644 --- a/aqt/about.py +++ b/aqt/about.py @@ -1,6 +1,7 @@ # Copyright: Ankitects Pty Ltd and contributors # -*- coding: utf-8 -*- # License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html +import platform import aqt.forms from anki.lang import _ @@ -50,7 +51,7 @@ system. It's free and open source.") abouttext += "
"+_("Anki is licensed under the AGPL3 license. Please see " "the license file in the source distribution for more information.") abouttext += '
' + _("Version %s") % versionWithBuild() + '
'
- abouttext += ("Qt %s PyQt %s
") % (QT_VERSION_STR, PYQT_VERSION_STR)
+ abouttext += ("Python %s Qt %s PyQt %s
") % (platform.python_version(), QT_VERSION_STR, PYQT_VERSION_STR)
abouttext += (_("Visit website") % aqt.appWebsite) + \
""