Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/meeting.py
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-07-06 23:18:44 (GMT)
committer Richard Darst <rkd@zgib.net>2009-07-06 23:18:44 (GMT)
commit30e9dea7c2908b04885eb1a42d4815927e1fa6cc (patch)
treea5c8952d2b60c1e3c7ea053c607cca63cc1e3582 /meeting.py
parent1c3fb3207b094222aaa08bfb7b30245f51c0bac4 (diff)
Remove default of config values on richard's computer
- Now we default to "." for the logdir and "" for the URL prefix. darcs-hash:20090706231844-82ea9-866700f2d88bb3e4e8d80055f3b424f000ecf4c6.gz
Diffstat (limited to 'meeting.py')
-rw-r--r--meeting.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/meeting.py b/meeting.py
index c151885..64c8061 100644
--- a/meeting.py
+++ b/meeting.py
@@ -47,9 +47,11 @@ class Config(object):
# Throw any overrides into meetingLocalConfig.py in this directory:
#
# Where to store files on disk
- logFileDir = '/home/richard/meetbot/'
+ # Example: logFileDir = '/home/richard/meetbot/'
+ logFileDir = '.'
# The links to the logfiles are given this prefix
- logUrlPrefix = 'http://rkd.zgib.net/meetbot/'
+ # Example: logUrlPrefix = 'http://rkd.zgib.net/meetbot/'
+ logUrlPrefix = ''
# Give the pattern to save files into here. Use %(channel)s for
# channel. This will be sent through strftime for substituting it
# times, howover, for strftime codes you must use doubled percent