Commenting out some noisy debug print statements.

- Legacy-Id: 433
This commit is contained in:
Henrik Levkowetz 2007-06-16 15:05:30 +00:00
parent df6836e301
commit 054d04443f

View file

@ -158,7 +158,7 @@ def related_docs(startdoc):
def handle(otherdoc,status,doc,skip=(0,0,0)): def handle(otherdoc,status,doc,skip=(0,0,0)):
new = (otherdoc, status, doc) new = (otherdoc, status, doc)
if otherdoc in processed: if otherdoc in processed:
print "skipping (%s,%s,%s) because otherdoc has been processed" % (new) #print "skipping (%s,%s,%s) because otherdoc has been processed" % (new)
return return
#if new not in related: #if new not in related:
if True: #otherdoc not in processed: if True: #otherdoc not in processed:
@ -169,7 +169,7 @@ def related_docs(startdoc):
def process(doc, skip=(0,0,0)): def process(doc, skip=(0,0,0)):
#XXX #XXX
skip = (0,0,0) skip = (0,0,0)
print "doc = %s skip = %s" % (doc,skip) #print "doc = %s skip = %s" % (doc,skip)
processed.append(doc) processed.append(doc)
if type(doc) == InternetDraft: if type(doc) == InternetDraft:
if doc.replaced_by_id != 0 and not(skip[0]): if doc.replaced_by_id != 0 and not(skip[0]):