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:
5ba9225
)
tahoe_ls: CLI command should return rc=0, not None
author
Brian Warner
<warner@allmydata.com>
Tue, 3 Feb 2009 04:07:20 +0000
(21:07 -0700)
committer
Brian Warner
<warner@allmydata.com>
Tue, 3 Feb 2009 04:07:20 +0000
(21:07 -0700)
src/allmydata/scripts/tahoe_ls.py
patch
|
blob
|
history
diff --git
a/src/allmydata/scripts/tahoe_ls.py
b/src/allmydata/scripts/tahoe_ls.py
index 88e09a479c0247bbf832dc78808c389b41c33d70..bf3a36696ef36623ee555ac6fc35ebf1bc9b02dc 100644
(file)
--- a/
src/allmydata/scripts/tahoe_ls.py
+++ b/
src/allmydata/scripts/tahoe_ls.py
@@
-144,3
+144,5
@@
def list(options):
fmt = " ".join(fmt_pieces)
for row in rows:
print >>stdout, (fmt % tuple(row)).rstrip()
+
+ return 0