mirror of https://github.com/borgbackup/borg.git
Merge pull request #739 from ThomasWaldmann/remove-libc-display
remove useless/misleading libc version display, fixes #738
This commit is contained in:
commit
648761fc03
|
@ -1051,7 +1051,7 @@ def sysinfo():
|
||||||
info = []
|
info = []
|
||||||
info.append('Platform: %s' % (' '.join(platform.uname()), ))
|
info.append('Platform: %s' % (' '.join(platform.uname()), ))
|
||||||
if sys.platform.startswith('linux'):
|
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('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('PID: %d CWD: %s' % (os.getpid(), os.getcwd()))
|
||||||
info.append('sys.argv: %r' % sys.argv)
|
info.append('sys.argv: %r' % sys.argv)
|
||||||
|
|
Loading…
Reference in New Issue