summaryrefslogtreecommitdiff
path: root/python/tests/xpathext.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-02-23 10:53:52 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-02-23 10:53:52 +0000
commit09b792ba3056eddb7ed5cc9c759b6510b3ef7743 (patch)
tree56deb7ff8e28d8d300d01be62e5d04bf950d8450 /python/tests/xpathext.py
parent807daf826510d2d0597fdd10314e51b4d56c5e96 (diff)
downloadlibxml2-09b792ba3056eddb7ed5cc9c759b6510b3ef7743.tar.gz
applied patch from Malcolm Tredinnick to avoid tabs in python sources,
* python/tests/*.py: applied patch from Malcolm Tredinnick to avoid tabs in python sources, should fix #135095 Daniel
Diffstat (limited to 'python/tests/xpathext.py')
-rwxr-xr-xpython/tests/xpathext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/xpathext.py b/python/tests/xpathext.py
index c497b550..47696261 100755
--- a/python/tests/xpathext.py
+++ b/python/tests/xpathext.py
@@ -28,14 +28,14 @@ while i > 0:
res = ctxt.xpathEval("foo(1)")
if res != 2:
print "xpath extension failure"
- sys.exit(1)
+ sys.exit(1)
i = i - 1
i = 10000
while i > 0:
res = ctxt.xpathEval("bar(1)")
if res != "3":
print "xpath extension failure got %s expecting '3'"
- sys.exit(1)
+ sys.exit(1)
i = i - 1
doc.freeDoc()
ctxt.xpathFreeContext()