Remove debugging output.

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@3516 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Tobias Markmann 2009-10-09 12:20:52 +00:00
parent 0c95b8f6b3
commit 1e195d30bf
1 changed files with 0 additions and 3 deletions

3
gen.py
View File

@ -101,7 +101,6 @@ class XEPTable:
self.tableFile.getElementsByTagName("table")[0].normalize()
f.write(self.tableFile.toxml())
f.close()
print self.tableFile.toxml()
def setXEP(self, info):
rows = self.tableFile.getElementsByTagName("tr")
@ -112,7 +111,6 @@ class XEPTable:
break
if xeprow == 0:
print "Row not found."
xeprow = self.tableFile.createElement("tr")
self.tableFile.getElementsByTagName("table")[0].appendChild(xeprow)
self.tableFile.getElementsByTagName("table")[0].appendChild(self.tableFile.createTextNode('''
@ -120,7 +118,6 @@ class XEPTable:
xeprow.setAttribute("id", "xep" + info.getNr())
xeprow.setAttribute("class", "tablebody")
else:
print "Row found."
while(xeprow.hasChildNodes()):
xeprow.removeChild(xeprow.firstChild)