]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
'tahoe --version': remove inconsistent trailing comma, easier to parse
authorBrian Warner <warner@lothar.com>
Tue, 26 Jun 2012 16:18:45 +0000 (09:18 -0700)
committerBrian Warner <warner@lothar.com>
Tue, 26 Jun 2012 16:18:45 +0000 (09:18 -0700)
src/allmydata/__init__.py

index 51af4fe5ddb870955f76510e931709aebc6235b5..867dc0ea121bc008a87baae9ba81974f2020dabd 100644 (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()