From: Jeff B. <its...@gm...> - 2008-05-30 23:55:32
|
codecs.open was failing without it. --- test-markdown.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/test-markdown.py b/test-markdown.py index e3997a4..bc2b891 100644 --- a/test-markdown.py +++ b/test-markdown.py @@ -214,6 +214,9 @@ def testDirectory(dir, measure_time=False, safe_mode=False) : except: hd = None + if not os.path.exists(TMP_DIR): + os.mkdir(TMP_DIR) + htmlDiffFilePath = os.path.join(TMP_DIR, os.path.split(dir)[-1]) + ".html" htmlDiffFile = codecs.open(htmlDiffFilePath, "w", encoding=encoding) htmlDiffFile.write(DIFF_FILE_TEMPLATE) -- 1.5.5.1 |