'tahoe --version': remove inconsistent trailing comma, easier to parse

This commit is contained in:
Brian Warner 2012-06-26 09:18:45 -07:00
parent 69bd49fc57
commit 2ed6b67644

View File

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