summaryrefslogtreecommitdiff
path: root/patchtracker/SourceArchive.py
diff options
context:
space:
mode:
Diffstat (limited to 'patchtracker/SourceArchive.py')
-rwxr-xr-xpatchtracker/SourceArchive.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/patchtracker/SourceArchive.py b/patchtracker/SourceArchive.py
index 5fa2d17..832b315 100755
--- a/patchtracker/SourceArchive.py
+++ b/patchtracker/SourceArchive.py
@@ -16,13 +16,10 @@ class Archive:
self.root = dir
self.distsdir = os.sep.join([dir, "dists"])
for s in self.parsesuites(filter=suitefilter):
- print "suite: ",s
self.addsuite(s)
for c in self.parsecomponents(s):
- print "\tcomponent:",c
self.addcomponent(s,c)
for p in self.parsesourcepackages(s,c,filter=pkgfilter):
- print "\t\tpackage:",p
self.addsourcepackage(s,c,p)
def addsuite(self, suite):