diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-01 20:19:49 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-01 20:19:49 -0400 |
commit | 4e8c08eb8fb22afa61b805f545c0d0460e79184e (patch) | |
tree | f249feee0eda6894482d45045a796271851ad7dd /cmd2.py | |
parent | 41d4aa2e7d9957dd13786e93a1af42949c82fa25 (diff) | |
download | cmd2-git-4e8c08eb8fb22afa61b805f545c0d0460e79184e.tar.gz |
Stopped skipping a unit test on Windows which should pass now
Diffstat (limited to 'cmd2.py')
-rwxr-xr-x | cmd2.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1431,8 +1431,7 @@ Paths or arguments that contain spaces must be enclosed in quotes sys.argv.extend(arg[1:]) # Run the script - use repr formatting to escape things which need to be escaped to prevent issues on Windows - py_cmd = "run({!r})".format(script_path) - self.do_py(py_cmd) + self.do_py("run({!r})".format(script_path)) # Restore command line arguments to original state sys.argv = orig_args |