Skip to content
Snippets Groups Projects
Commit eb6953a2 authored by fphemeral's avatar fphemeral
Browse files

clean-up

parent ad2bfbb4
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ async def chat_with(contact_id):
async def send_msgs(contact_id):
repl.selected = "send_msgs"
completes = set(["/back"])
completes = {"/back"}
completes.update(cont.contact_names)
while True:
msg_text = await ps.prompt_async(
......@@ -56,7 +56,7 @@ async def send_msgs(contact_id):
await perform(*args)
else:
print("sorry could find this command..")
print("sorry could not find this command..")
elif len(msg_text) > 0:
await msgs.send(contact_id, msg_text)
......@@ -78,7 +78,7 @@ async def chose_action():
perform = repl.implemented.get(command)
await perform(*args)
else:
print("sorry could find this command..")
print("sorry could not find this command..")
if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment