]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
tahoe_ls: CLI command should return rc=0, not None
authorBrian Warner <warner@allmydata.com>
Tue, 3 Feb 2009 04:07:20 +0000 (21:07 -0700)
committerBrian Warner <warner@allmydata.com>
Tue, 3 Feb 2009 04:07:20 +0000 (21:07 -0700)
src/allmydata/scripts/tahoe_ls.py

index 88e09a479c0247bbf832dc78808c389b41c33d70..bf3a36696ef36623ee555ac6fc35ebf1bc9b02dc 100644 (file)
@@ -144,3 +144,5 @@ def list(options):
     fmt = " ".join(fmt_pieces)
     for row in rows:
         print >>stdout, (fmt % tuple(row)).rstrip()
+
+    return 0