|
@@ -454,7 +454,7 @@ def removeSameRes2(resFile, resList, removeList):
|
|
same = False
|
|
same = False
|
|
for node in root.getchildren():
|
|
for node in root.getchildren():
|
|
if containRes(node, resList):
|
|
if containRes(node, resList):
|
|
- print('delete node : tag is %s, name is %s' % (node.tag, node.attrib['name']))
|
|
|
|
|
|
+ #print('delete node : tag is %s, name is %s' % (node.tag, node.attrib['name']))
|
|
root.remove(node)
|
|
root.remove(node)
|
|
removeList.append(node)
|
|
removeList.append(node)
|
|
same = True
|
|
same = True
|
|
@@ -473,7 +473,7 @@ def removeSameRes(resFile, resList):
|
|
same = False
|
|
same = False
|
|
for node in root.getchildren():
|
|
for node in root.getchildren():
|
|
if containRes(node, resList):
|
|
if containRes(node, resList):
|
|
- print('delete node : tag is %s, name is %s' % (node.tag, node.attrib['name']))
|
|
|
|
|
|
+ #print('delete node : tag is %s, name is %s' % (node.tag, node.attrib['name']))
|
|
root.remove(node)
|
|
root.remove(node)
|
|
same = True
|
|
same = True
|
|
|
|
|