aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plugins.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@dev.westell.com>2010-02-22 22:53:55 -0500
committerWaylan Limberg <waylan@dev.westell.com>2010-02-22 22:53:55 -0500
commit3eb86a20f0b20e44b34087c16e20ff40cead7420 (patch)
tree21810589a1197d8c14ad825ee202b11b979eaaad /tests/plugins.py
parent86a67763a2421d84117c037d459c75fe9f52b824 (diff)
downloadmarkdown-3eb86a20f0b20e44b34087c16e20ff40cead7420.tar.gz
markdown-3eb86a20f0b20e44b34087c16e20ff40cead7420.tar.bz2
markdown-3eb86a20f0b20e44b34087c16e20ff40cead7420.zip
Changes path of html output to be written into current dir rather than a tmp dir. No need to create the tmp dir on first run.
Diffstat (limited to 'tests/plugins.py')
-rw-r--r--tests/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins.py b/tests/plugins.py
index acd1eaf..6e72024 100644
--- a/tests/plugins.py
+++ b/tests/plugins.py
@@ -81,7 +81,7 @@ or ""))
else:
self.html.append('OK')
self.html.append('</div></body></html>')
- f = open('tmp/test-output.html', 'w')
+ f = open('test-output.html', 'w')
for l in self.html:
f.write(l)
f.close()