From: Brian Warner Date: Tue, 3 Feb 2009 04:07:20 +0000 (-0700) Subject: tahoe_ls: CLI command should return rc=0, not None X-Git-Tag: allmydata-tahoe-1.3.0~105 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=a7de479767c02ab8aa059e0047ae33e2114606f8;p=tahoe-lafs%2Ftahoe-lafs.git tahoe_ls: CLI command should return rc=0, not None --- diff --git a/src/allmydata/scripts/tahoe_ls.py b/src/allmydata/scripts/tahoe_ls.py index 88e09a47..bf3a3669 100644 --- 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