Let there be emoji
This commit is contained in:
parent
e5df45650d
commit
2c894b5d1d
@ -3,6 +3,7 @@
|
||||
import os
|
||||
|
||||
import click
|
||||
import emoji
|
||||
from PyInquirer import prompt
|
||||
|
||||
from autonomic import logger
|
||||
@ -60,9 +61,14 @@ def ask_to_login():
|
||||
"filter": lambda val: val.lower(),
|
||||
}
|
||||
]
|
||||
|
||||
answer = prompt(question)
|
||||
add_to_config(answer)
|
||||
|
||||
msg = "Welcome comrade {} :kissing:".format(answer["username"])
|
||||
emojized = emoji.emojize(msg, use_aliases=True)
|
||||
log.info(emojized)
|
||||
|
||||
|
||||
def create_configuration_file():
|
||||
"""Create toolbelt config file."""
|
||||
|
Reference in New Issue
Block a user