From: david-sarah Date: Tue, 8 Jun 2010 00:38:29 +0000 (-0700) Subject: show-tool-versions.py: show platform.linux_distribution() X-Git-Url: https://git.rkrishnan.org/listings/copyable-receive.py?a=commitdiff_plain;h=1e70a8303f5e2c1322e459de2be88edba3c75031;p=tahoe-lafs%2Ftahoe-lafs.git show-tool-versions.py: show platform.linux_distribution() --- diff --git a/misc/build_helpers/show-tool-versions.py b/misc/build_helpers/show-tool-versions.py index bec7e698..68e2b7c3 100644 --- a/misc/build_helpers/show-tool-versions.py +++ b/misc/build_helpers/show-tool-versions.py @@ -8,6 +8,7 @@ def print_platform(): out = platform.platform() print print "platform:", out.replace("\n", " ") + print ', linux_distribution:', repr(platform.linux_distribution()) except EnvironmentError, le: sys.stderr.write("Got exception using 'platform': %s\n" % (le,)) pass