From b35123ff487c633e7512434f8c8bba22651cd0f3 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Tue, 15 Jun 2004 07:26:05 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3576 --- py/Boinc/boincxml.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py/Boinc/boincxml.py b/py/Boinc/boincxml.py index 6761356cc3..2631e870b2 100644 --- a/py/Boinc/boincxml.py +++ b/py/Boinc/boincxml.py @@ -50,6 +50,7 @@ def set_element(node, new_data): if node.firstChild and node.firstChild.data: node.firstChild.data = str(new_data) else: + # different versions of pyxml have different interface (!) try: new_data_node = xml.dom.minidom.Text() except: