From: Stefan Behnel Date: Fri, 5 Mar 2010 09:05:23 +0000 (+0100) Subject: fix last commit X-Git-Tag: 0.13.beta0~2^2~102^2~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=09d52ad8c828d2744ddeba028cd5044777504d35;p=cython.git fix last commit --- diff --git a/runtests.py b/runtests.py index f5958f7e..91e3c2fa 100644 --- a/runtests.py +++ b/runtests.py @@ -888,8 +888,8 @@ if __name__ == '__main__': "Failed to import xmlrunner.XMLTestRunner, no XML output available\n") xml_output_dir = None - if xml_output_dir: - test_runner = XMLTestRunner(output=xml_output_dir) + if options.xml_output_dir: + test_runner = XMLTestRunner(output=options.xml_output_dir) else: test_runner = unittest.TextTestRunner(verbosity=options.verbosity)