summaryrefslogtreecommitdiff
path: root/realtime/rt/rt.py
diff options
context:
space:
mode:
authorMichael Denkowski <mdenkows@cs.cmu.edu>2013-09-23 08:22:52 -0700
committerMichael Denkowski <mdenkows@cs.cmu.edu>2013-09-23 08:22:52 -0700
commitf8a0d65a4cebd45bd48ccf9b4df0cfbab4ab643e (patch)
tree95ffc61964447c15a79d6a9ee76232c3a55b4863 /realtime/rt/rt.py
parentae3cfd5700d20d30a06f5c27ea1c5e39a458c783 (diff)
parent903339fdd7c294a72a8b2066550dbb5dd78f5384 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'realtime/rt/rt.py')
-rw-r--r--realtime/rt/rt.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/realtime/rt/rt.py b/realtime/rt/rt.py
index b1cf19ef..033ed790 100644
--- a/realtime/rt/rt.py
+++ b/realtime/rt/rt.py
@@ -101,7 +101,8 @@ class RealtimeDecoder:
logging.info('Grammar cache hit')
return grammar_file
# Extract and cache
- grammar_file = tempfile.mkstemp(dir=self.tmp, prefix='grammar.')[1]
+ (fid, grammar_file) = tempfile.mkstemp(dir=self.tmp, prefix='grammar.')
+ os.close(fid)
with open(grammar_file, 'w') as output:
for rule in self.extractor.grammar(sentence):
output.write('{}\n'.format(str(rule)))