print "Warning: you are going to remove the seed from this wallet, which will forbid to send coins.\nPlease make sure that you have saved the seed elsewhere."
if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
wallet.seed = ''
wallet.use_encryption = False
wallet.save()
print "Done."
if not wallet.seed:
print "This wallet has no seed"
else:
print "Action canceled."
ns = options.wallet_path+'.seed'
print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(options.wallet_path,ns)
if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']: