diff options
Diffstat (limited to 'python/tests/tstLastError.py')
-rwxr-xr-x | python/tests/tstLastError.py | 2 |
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: |