Skip to content

Commit

Permalink
Apply review suggestions per @CAM-Gerlach
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclary committed Apr 17, 2023
1 parent 6e33542 commit bf3ef73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spyder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def get_versions(reporev=True):
'revision': revision, # '9fdf926eccce',
'branch': branch, # '4.x' or master,
'machine': platform.machine(), # 'arm64', 'x86_64', 'AMD64', ...
'platform': platform.platform(aliased=True),
}
if sys.platform == 'darwin':
versions.update(system='macOS', release=platform.mac_ver()[0])
Expand All @@ -114,5 +115,5 @@ def get_versions_text(reporev=True):
* Python version: {versions['python']} {versions['bitness']}-bit
* Qt version: {versions['qt']}
* {versions['qt_api']} version: {versions['qt_api_ver']}
* Operating System: {versions['system']} {versions['release']} ({versions['machine']})
* Operating System: {versions['platform']}
"""

0 comments on commit bf3ef73

Please sign in to comment.