Sfoglia il codice sorgente

Merge pull request #739 from ThomasWaldmann/remove-libc-display

remove useless/misleading libc version display, fixes #738
TW 9 anni fa
parent
commit
648761fc03
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      borg/helpers.py

+ 1 - 1
borg/helpers.py

@@ -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)