changeset 8:e1693483089d draft

Add comments to configuration file
author Alexander Berntsen <alexander@plaimi.net>
date Mon, 15 Apr 2013 15:29:08 +0200
parents 29671797f5b7
children 2d4132c95e92
files config.py
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/config.py
+++ b/config.py
@@ -1,9 +1,18 @@
+# IRC Network to connect to
 network = 'irc.freenode.net'
+# Port to connect on
 port = 6667
+# Channel to join (automatically)
 chan = 'bot_test'
+# Nickname of bot
 nickname = 'my_bot'
+# Username to use when identifying with services (or not)
 username = nickname
+# Whether to use a password to identify with services or not
 password = False
+# IRC nick names that can control the bot
 masters = [nickname, 'my_nickname']
+# High score database file (is automatically created)
 hiscoresdb = 'hiscores.sql'
+# Whether to print 'category - question - answer' to STDOUT
 verbose = True