Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/writers.py
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-07-01 00:26:01 (GMT)
committer Richard Darst <rkd@zgib.net>2009-07-01 00:26:01 (GMT)
commit34283f78818cfff6dd198a2eb8678230b5a5d07a (patch)
treecefc632414364648f336fe038a9d7be6076b8ff6 /writers.py
parent9e85a4afddf97b71cd01b20f71df147aaa1ee9b4 (diff)
fix bug in RST writing: .append() bad arguments
darcs-hash:20090701002601-82ea9-45a8d9f773cfec8795c3e42932e9f045bc81bd86.gz
Diffstat (limited to 'writers.py')
-rw-r--r--writers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/writers.py b/writers.py
index f247383..98dd8b3 100644
--- a/writers.py
+++ b/writers.py
@@ -221,7 +221,7 @@ class RST(object):
if not isinstance(m, items.Action): continue
if getattr(m, 'assigned', False): continue
# already escaped
- ActionItemsPerson.append(wrapList("* %s"%m.line), 2)
+ ActionItemsPerson.append(wrapList("* %s"%m.line, 2))
numberUnassigned += 1
if numberUnassigned == 0: ActionItemsPerson.append(" * (none)")
#ActionItemsPerson.append(' </ol>\n</li>')