From: Brian Warner Date: Tue, 26 Jun 2012 16:18:45 +0000 (-0700) Subject: 'tahoe --version': remove inconsistent trailing comma, easier to parse X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=2ed6b6764486720a16b6c053c41f9e0b703d35aa;p=tahoe-lafs%2Ftahoe-lafs.git 'tahoe --version': remove inconsistent trailing comma, easier to parse --- diff --git a/src/allmydata/__init__.py b/src/allmydata/__init__.py index 51af4fe5..867dc0ea 100644 --- a/src/allmydata/__init__.py +++ b/src/allmydata/__init__.py @@ -390,7 +390,7 @@ def get_package_versions_string(show_paths=False, debug=False): info = info + " (%s)" % str(loc) res.append(info) - output = ",\n".join(res) + "\n" + output = "\n".join(res) + "\n" if not hasattr(sys, 'frozen'): errors = cross_check_pkg_resources_versus_import()