mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-30 19:21:17 +00:00
remove useless/misleading libc version display, fixes #738
platform.libc_ver() is broken, it uses string comparison to compare version numbers.
This commit is contained in:
parent
9be520b64a
commit
3115bb4d1b
1 changed files with 1 additions and 1 deletions
|
@ -1051,7 +1051,7 @@ def sysinfo():
|
|||
info = []
|
||||
info.append('Platform: %s' % (' '.join(platform.uname()), ))
|
||||
if sys.platform.startswith('linux'):
|
||||
info.append('Linux: %s %s %s LibC: %s %s' % (platform.linux_distribution() + platform.libc_ver()))
|
||||
info.append('Linux: %s %s %s' % platform.linux_distribution())
|
||||
info.append('Borg: %s Python: %s %s' % (borg_version, platform.python_implementation(), platform.python_version()))
|
||||
info.append('PID: %d CWD: %s' % (os.getpid(), os.getcwd()))
|
||||
info.append('sys.argv: %r' % sys.argv)
|
||||
|
|
Loading…
Reference in a new issue