summaryrefslogtreecommitdiff
path: root/python/libxml.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-02-02 12:19:46 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-02-02 12:19:46 +0000
commit7fd7a94aa812e007842a4a0896bcbfa80ffdc907 (patch)
tree73e2d26f2814672d9b19c9776ae2fec2a54a2028 /python/libxml.py
parent4cf998a6394941373baaf19573dd2c44ae35e12f (diff)
downloadlibxml2-7fd7a94aa812e007842a4a0896bcbfa80ffdc907.tar.gz
fixed a stupid bug when renaming a function Daniel
* python/libxml.c python/libxml.py: fixed a stupid bug when renaming a function Daniel
Diffstat (limited to 'python/libxml.py')
-rw-r--r--python/libxml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/libxml.py b/python/libxml.py
index 88be5d71..4c8c51c7 100644
--- a/python/libxml.py
+++ b/python/libxml.py
@@ -145,7 +145,7 @@ def xpathObjectRet(o):
# register an XPath function
#
def registerXPathFunction(ctxt, name, ns_uri, f):
- ret = _libxml.registerXPathFunction(ctxt, name, ns_uri, f)
+ ret = _libxml.xmlRegisterXPathFunction(ctxt, name, ns_uri, f)
#
# Everything below this point is automatically generated