projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69bd49f
)
'tahoe --version': remove inconsistent trailing comma, easier to parse
author
Brian Warner
<warner@lothar.com>
Tue, 26 Jun 2012 16:18:45 +0000
(09:18 -0700)
committer
Brian Warner
<warner@lothar.com>
Tue, 26 Jun 2012 16:18:45 +0000
(09:18 -0700)
src/allmydata/__init__.py
patch
|
blob
|
history
diff --git
a/src/allmydata/__init__.py
b/src/allmydata/__init__.py
index 51af4fe5ddb870955f76510e931709aebc6235b5..867dc0ea121bc008a87baae9ba81974f2020dabd 100644
(file)
--- 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()