Skip to content

Commit 4ca9d25

Browse files
committed
Revert "Merge pull request #108 from open-source-parsers/quote-spaces"
This reverts commit dfc5f87, reversing changes made to 0f6884f.
1 parent 6eaf150 commit 4ca9d25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runjsontests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from __future__ import print_function
2-
from glob import glob
32
import sys
43
import os
5-
import pipes
4+
import os.path
5+
from glob import glob
66
import optparse
77

88
VALGRIND_CMD = 'valgrind --tool=memcheck --leak-check=yes --undef-value-errors=yes '
@@ -56,7 +56,7 @@ def runAllTests( jsontest_executable_path, input_dir = None,
5656
options = is_json_checker_test and '--json-checker' or ''
5757
pipe = os.popen( "%s%s %s %s" % (
5858
valgrind_path, jsontest_executable_path, options,
59-
pipes.quote(input_path)))
59+
input_path) )
6060
process_output = pipe.read()
6161
status = pipe.close()
6262
if is_json_checker_test:

0 commit comments

Comments
 (0)