Description of problem: arandr doesn't start due to usage of 'inspect.getargspec' which is not available in Python 3.11 any longer. Traceback: Traceback (most recent call last): File "/usr/bin/arandr", line 41, in <module> from screenlayout.gui import main File "/usr/lib/python3.11/site-packages/screenlayout/gui.py", line 76, in <module> class Application: File "/usr/lib/python3.11/site-packages/screenlayout/gui.py", line 185, in Application @actioncallback ^^^^^^^^^^^^^^ File "/usr/lib/python3.11/site-packages/screenlayout/gui.py", line 48, in actioncallback argnames = inspect.getargspec(function)[0] ^^^^^^^^^^^^^^^^^^ Fix: /usr/lib/python3.11/site-packages/screenlayout/gui.py Line 48 needs to be changed from argnames = inspect.getargspec(function)[0] to argnames = inspect.getfullargspec(function)[0] Version-Release number of selected component (if applicable): arandr-0.1.10-12.fc37.noarch python3-3.11.0-1.fc37.x86_64 How reproducible: always Steps to Reproduce: 1. Start arandr 2. Start arandr from a terminal to the see the traceback Actual results: GUI doesn't start Expected results: GUI starts properly Additional info:
FEDORA-2022-f90e383cfd has been submitted as an update to Fedora 37. https://bodhi.fedoraproject.org/updates/FEDORA-2022-f90e383cfd
FEDORA-2022-f90e383cfd has been pushed to the Fedora 37 testing repository. Soon you'll be able to install the update with the following command: `sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2022-f90e383cfd` You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2022-f90e383cfd See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.
FEDORA-2022-f90e383cfd fixed the issue. Thank you.
FEDORA-2022-f90e383cfd has been pushed to the Fedora 37 stable repository. If problem still persists, please make note of it in this bug report.