From a7de479767c02ab8aa059e0047ae33e2114606f8 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Mon, 2 Feb 2009 21:07:20 -0700
Subject: [PATCH] tahoe_ls: CLI command should return rc=0, not None

---
 src/allmydata/scripts/tahoe_ls.py | 2 ++
 1 file changed, 2 insertions(+)

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
-- 
2.45.2