Changes between Initial Version and Version 1 of Ticket #1159, comment 37
- Timestamp:
- 2013-01-03T17:40:09Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1159, comment 37
initial v1 7 7 If 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: 8 8 {{{ 9 - print >>err, twistd_config 9 10 - print >>err, "tahoe start: %s" % (config.subCommand, ue) 10 - print >>err, twistd_config11 11 --- 12 12 + print >>err, str(twistd_config).partition("\n\n")[0]