summaryrefslogtreecommitdiffstats
path: root/Mac/Demo/speech
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-03-07 23:40:13 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-03-07 23:40:13 (GMT)
commit34d11f0670cbfb1e72af5285b36f207f22fb99d2 (patch)
tree1cf65694823451494364f01112227d23726ee9e9 /Mac/Demo/speech
parent9de988315a3ac8b87a9881d8d2ebf38d19671442 (diff)
downloadcpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.zip
cpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.tar.gz
cpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.tar.bz2
Fixed multi-arg appends.
Diffstat (limited to 'Mac/Demo/speech')
-rw-r--r--Mac/Demo/speech/grail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Demo/speech/grail.py b/Mac/Demo/speech/grail.py
index d926569..4f95b9a 100644
--- a/Mac/Demo/speech/grail.py
+++ b/Mac/Demo/speech/grail.py
@@ -77,7 +77,7 @@ def readscript(file):
for i in range(len(lines)):
tp, data = parseline(lines[i])
if tp == NEWSCENE:
- acts.append(actor_dict.keys(), lines[prev_act:i])
+ acts.append((actor_dict.keys(), lines[prev_act:i]))
prev_act = i
actor_dict = {}
elif tp == TEXT: