Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/doc/Manual.txt
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-11-25 06:54:14 (GMT)
committer Richard Darst <rkd@zgib.net>2009-11-25 06:54:14 (GMT)
commitf96de7415379b6c3431c3e67b507ed803719dbf2 (patch)
tree62727c395ab8037f0121d94d2b40a0f41bd2aa0d /doc/Manual.txt
parentc0f4d2e5c816af43af9fe128b002bb73cf8b789b (diff)
Fix case error in "class Config" example
- This is a very bad error, considering people will try to directly copy and paste this, and "class" must be lowercase in python (of course). darcs-hash:20091125065414-82ea9-ffb3a36cc91173c79199c721ef59dfc1863ad995.gz
Diffstat (limited to 'doc/Manual.txt')
-rw-r--r--doc/Manual.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Manual.txt b/doc/Manual.txt
index de6f1e2..3b3665a 100644
--- a/doc/Manual.txt
+++ b/doc/Manual.txt
@@ -355,7 +355,7 @@ Here is a minimal usage example. You need at *least* this much to
make it run. Put this in ``meetingLocalConfig.py`` before you first
start supybot::
- Class Config(object):
+ class Config(object):
# These two are **required**:
logFileDir = '/home/richard/meetbot/'
logUrlPrefix = 'http://rkd.zgib.net/meetbot/'