summaryrefslogtreecommitdiff
path: root/python/tests/tstLastError.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/tstLastError.py')
-rwxr-xr-xpython/tests/tstLastError.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/tstLastError.py b/python/tests/tstLastError.py
index 83e98b8..442609c 100755
--- a/python/tests/tstLastError.py
+++ b/python/tests/tstLastError.py
@@ -21,7 +21,7 @@ class TestCase(unittest.TestCase):
# disable the default error handler
libxml2.registerErrorHandler(None,None)
try:
- f(*args)
+ apply(f,args)
except exc:
e = libxml2.lastError()
if e is None: