From: Brian Warner <warner@lothar.com>
Date: Thu, 2 May 2013 02:04:12 +0000 (-0700)
Subject: oops, fix a BasedirOptions name I flubbed while merging
X-Git-Url: https://git.rkrishnan.org/components/%22news.html/simplejson/running.html?a=commitdiff_plain;h=e18feb63ed7ea8e72c60e10b99f7c0cc86e4c329;p=tahoe-lafs%2Ftahoe-lafs.git

oops, fix a BasedirOptions name I flubbed while merging
---

diff --git a/src/allmydata/scripts/startstop_node.py b/src/allmydata/scripts/startstop_node.py
index 424b3289..7aa1bf78 100644
--- a/src/allmydata/scripts/startstop_node.py
+++ b/src/allmydata/scripts/startstop_node.py
@@ -27,7 +27,7 @@ class StartOptions(BasedirOptions):
         return "Usage:  %s [global-opts] %s [options] [NODEDIR] [twistd_options]" % (self.command_name, self.subcommand_name)
 
     def getUsage(self, width=None):
-        t = BaseOptions.getUsage(self, width) + "\n"
+        t = BasedirOptions.getUsage(self, width) + "\n"
         t += format_twisted_options(MyTwistdConfig())
         return t