Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-08-07 20:36:25 (GMT)
committer Richard Darst <rkd@zgib.net>2009-08-07 20:36:25 (GMT)
commit4fde73ef8cc2d20e18f56f1324693c853f3fc024 (patch)
tree2c7457211610ff8cee66705c6b1c00beafa0115a
parente524d976cfeb7382ab943761da3863a97a894240 (diff)
Change default writers to HTML2 and Text
darcs-hash:20090807203625-82ea9-e906db8ad7fe020c4ccefd22025e8d2526bef854.gz
-rw-r--r--meeting.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meeting.py b/meeting.py
index 9a59326..a9a0bcf 100644
--- a/meeting.py
+++ b/meeting.py
@@ -103,11 +103,11 @@ class Config(object):
writer_map = {
'.log.html':writers.HTMLlog,
- '.html': writers.HTML,
- '.2.html': writers.HTML2,
- '.rst': writers.ReST,
+ #'.1.html': writers.HTML,
+ '.html': writers.HTML2,
+ #'.rst': writers.ReST,
'.txt': writers.Text,
- '.rst.html':writers.HTMLfromReST,
+ #'.rst.html':writers.HTMLfromReST,
}