From fb4bc89bf30a4f7385da69f9bf8efdab596c5230 Mon Sep 17 00:00:00 2001 From: kaliko Date: Sun, 16 Nov 2014 14:34:46 +0100 Subject: [PATCH] Add jid in password prompt --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index e02d96f..4940900 100644 --- a/bot.py +++ b/bot.py @@ -9,7 +9,7 @@ from sid.feeds import Feeds JID = 'bot@example.org' NICK = 'sid' -PASS = getpass.getpass('Password: ') +PASS = getpass.getpass('Password for "{}": '.format(JID)) ROOM = 'room@conf.example.org' def main(): -- 2.39.2