##// END OF EJS Templates
Fix run-tests.py -jX after 2ed667a9dfcb
Ronny Pfannschmidt -
r10765:fd31a323 default
parent child Browse files
Show More
@@ -144,7 +144,8 b' def parseargs():'
144 (options, args) = parser.parse_args()
144 (options, args) = parser.parse_args()
145
145
146 # jython is always pure
146 # jython is always pure
147 options.pure = options.pure or 'java' in sys.platform
147 if 'java' in sys.platform:
148 options.pure = True
148
149
149 if options.with_hg:
150 if options.with_hg:
150 if not (os.path.isfile(options.with_hg) and
151 if not (os.path.isfile(options.with_hg) and
General Comments 0
You need to be logged in to leave comments. Login now