We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a82ea0 commit f8fc1aaCopy full SHA for f8fc1aa
2 files changed
test/validations.sh
@@ -7,4 +7,4 @@ test/validations/test-coverage/run.sh
7
python3.6 test/validations/securecookie/run.py
8
python3.6 test/validations/filename/run.py
9
python3.6 test/validations/relaxng/run.py
10
-python2.7 test/validations/special/run.py --quiet
+python3.6 test/validations/special/run.py --quiet
test/validations/special/run.py
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env python2.7
+#!/usr/bin/env python3.6
2
3
import glob
4
import argparse
@@ -163,7 +163,7 @@ def nomes_all(where=sys.argv[1:]):
163
try:
164
tree = etree.parse(filename, xml_parser)
165
except Exception as oops:
166
- print("%s failed XML validity: %s\n" % (filename, oops))
+ print("{} failed XML validity: {}\n".format(filename, oops))
167
sys.exit(1)
168
169
if not xpath_ruleset(tree):
0 commit comments