Update bitmessagecli.py

This commit is contained in:
fdemortain 2018-05-09 14:09:42 +02:00 committed by GitHub
parent ac297e8d33
commit cafdff7f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1378,7 +1378,7 @@ def UI(usrInput): #Main user menu
elif usrInput == "generateaddress": #Generates a new address
uInput = userInput('\nWould you like to create a (D)eterministic or (R)andom address?').lower()
if uInput == "d" or uInput == "deterministic": #Creates a deterministic address
if uInput in ["d", "deterministic"]: #Creates a deterministic address
deterministic = True
#lbl = raw_input('Label the new address:') #currently not possible via the api