]> kaliko git repositories - sid.git/blobdiff - bot.py
Add Debian BTS plugin
[sid.git] / bot.py
diff --git a/bot.py b/bot.py
index 35ac4a503a09e0e69e310fc8453c845305aa12b6..49409008b96393892dc6098241d99e743105e6aa 100644 (file)
--- a/bot.py
+++ b/bot.py
@@ -1,13 +1,15 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
+import getpass
+
 from sid.sid import MUCBot
 from sid.echo import Echo
 from sid.feeds import Feeds
 
 JID = 'bot@example.org'
 NICK = 'sid'
-PASS = '53cr34'
+PASS = getpass.getpass('Password for "{}": '.format(JID))
 ROOM = 'room@conf.example.org'
 
 def main():