tahoe_ls: CLI command should return rc=0, not None

This commit is contained in:
Brian Warner 2009-02-02 21:07:20 -07:00
parent 5ba9225559
commit a7de479767

View File

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