Changes between Initial Version and Version 1 of Ticket #1159, comment 37


Ignore:
Timestamp:
2013-01-03T17:40:09Z (12 years ago)
Author:
davidsarah
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1159, comment 37

    initial v1  
    77If I try {{{tahoe start ~/.tahoe foo}}} (which should be an error), I get a twistd options listing followed by a !TypeError traceback, which appears to be due to a bug at {{{startstop_node.py}}} line 114. This change fixes the bug, and snips some implementation details about twistd from the end of the options listing:
    88{{{
     9-        print >>err, twistd_config
    910-        print >>err, "tahoe start: %s" % (config.subCommand, ue)
    10 -        print >>err, twistd_config
    1111---
    1212+        print >>err, str(twistd_config).partition("\n\n")[0]