Skip to content

Commit

Permalink
Rare: fix version reporting string
Browse files Browse the repository at this point in the history
  • Loading branch information
loathingKernel committed Sep 12, 2024
1 parent 56d32ef commit 12ee9ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rare/widgets/rare_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from argparse import Namespace

import legendary
from PySide6 import __version__ as PYQT_VERSION_STR
from PySide6 import __version__ as PYSIDE_VERSION_STR
from PySide6.QtCore import __version__ as QT_VERSION_STR
from PySide6.QtCore import (
QSettings,
Expand Down Expand Up @@ -111,7 +111,7 @@ def __init__(self, args: Namespace, log_file: str):
f" - Using Legendary {legendary.__version__} Codename: {legendary.__codename__} as backend\n"
f" - Operating System: {platform.system()}, Python version: {platform.python_version()}\n"
f" - Running {sys.executable} {' '.join(sys.argv)}\n"
f" - Qt version: {QT_VERSION_STR}, PyQt version: {PYQT_VERSION_STR}"
f" - Qt version: {QT_VERSION_STR}, PySide6 version: {PYSIDE_VERSION_STR}"
)

self.settings = QSettings(self)
Expand Down

0 comments on commit 12ee9ae

Please sign in to comment.