diff options
author | anatoly techtonik <techtonik@gmail.com> | 2012-12-18 10:24:19 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2012-12-18 10:24:19 (GMT) |
commit | 15d633a7931591f1829bfb9e0d29c79dfb26a1be (patch) | |
tree | 0870118014b97648517b710eef102259063bd93e | |
parent | 7204d98634a9a695a0c2f818ffafb6f79ad1bfab (diff) | |
download | SCons-15d633a7931591f1829bfb9e0d29c79dfb26a1be.zip SCons-15d633a7931591f1829bfb9e0d29c79dfb26a1be.tar.gz SCons-15d633a7931591f1829bfb9e0d29c79dfb26a1be.tar.bz2 |
runtest.py: Fix CRLF
-rw-r--r-- | runtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -199,8 +199,8 @@ class PassThroughOptionParser(OptionParser): parser = PassThroughOptionParser(add_help_option=False) parser.add_option('-a', '--all', action='store_true', help="Run all tests.") -parser.add_option('--xml',
- help="Save results to file in SCons XML format.")
+parser.add_option('--xml', + help="Save results to file in SCons XML format.") (options, args) = parser.parse_args() #print "options:", options |