From 8029901ed70aa6460550903c9443e754e4383ce0 Mon Sep 17 00:00:00 2001 From: aum Date: Tue, 17 Aug 2004 10:09:56 +0000 Subject: [PATCH] fixed error (.i2pstasher) in help output --- apps/stasher/python/src/code.leo | 7 ++++--- apps/stasher/python/src/stasher.py | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/stasher/python/src/code.leo b/apps/stasher/python/src/code.leo index 5e13fa346..19ba423c8 100644 --- a/apps/stasher/python/src/code.leo +++ b/apps/stasher/python/src/code.leo @@ -291,7 +291,7 @@ spawnproc killproc i2psocket -usage +usage err main @@ -306,7 +306,7 @@ @file-nosent stasher-launch.py contents -@file release.sh +@file release.sh @file setup-stasher.py @file-nosent README.txt installing-from-cvs @@ -5271,7 +5271,7 @@ stasher.logToSocket = 19199 print " -C, --clientaddr=host:port - host:port for socket interface to listen on" print " for clients, default %s" % clientAddr print " -d, --datadir=dir - directory in which stasher files get written" - print " default is ~/.i2pstasher" + print " default is ~/.stasher" print " -f, --foreground - only valid for 'start' cmd - runs the node" print " in foreground without spawning - for debugging" print @@ -5306,6 +5306,7 @@ stasher.logToSocket = 19199 sys.exit(0) + class KNodeServer(KBase, SocketServer.ThreadingMixIn, SocketServer.TCPServer): diff --git a/apps/stasher/python/src/stasher.py b/apps/stasher/python/src/stasher.py index 05eccfa6b..bfed65246 100644 --- a/apps/stasher/python/src/stasher.py +++ b/apps/stasher/python/src/stasher.py @@ -4032,7 +4032,7 @@ def usage(detailed=False, ret=0): print " -C, --clientaddr=host:port - host:port for socket interface to listen on" print " for clients, default %s" % clientAddr print " -d, --datadir=dir - directory in which stasher files get written" - print " default is ~/.i2pstasher" + print " default is ~/.stasher" print " -f, --foreground - only valid for 'start' cmd - runs the node" print " in foreground without spawning - for debugging" print @@ -4067,6 +4067,7 @@ def usage(detailed=False, ret=0): sys.exit(0) + #@-node:usage #@+node:err def err(msg):