CLI: remove 'tahoe admin generate-keypair', since the pycryptopp ecdsa API is about to change incompatibly. We'll undo this once pycryptopp is updated

This commit is contained in:
Brian Warner
2008-10-06 17:23:20 -07:00
parent dc2a114290
commit dbc2337639
3 changed files with 1 additions and 114 deletions

View File

@ -4,13 +4,12 @@ from cStringIO import StringIO
from twisted.python import usage
from allmydata.scripts.common import BaseOptions
import debug, create_node, startstop_node, cli, keygen, admin
import debug, create_node, startstop_node, cli, keygen
_general_commands = ( create_node.subCommands
+ keygen.subCommands
+ debug.subCommands
+ cli.subCommands
+ admin.subCommands
)
class Options(BaseOptions, usage.Options):
@ -70,8 +69,6 @@ def runner(argv,
rc = startstop_node.dispatch[command](so, stdout, stderr)
elif command in debug.dispatch:
rc = debug.dispatch[command](so)
elif command in admin.dispatch:
rc = admin.dispatch[command](so)
elif command in cli.dispatch:
rc = cli.dispatch[command](so)
elif command in keygen.dispatch: