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
This commit is contained in:
Richard Darst 2009-11-24 22:54:14 -08:00
parent 285254f00a
commit 67e7a2b4f3
1 changed files with 1 additions and 1 deletions

View File

@ -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/'