[Secure-testing-commits] r31456 - check-external
Luciano Bello
luciano at moszumanska.debian.org
Sat Jan 17 21:57:02 UTC 2015
Author: luciano
Date: 2015-01-17 21:57:02 +0000 (Sat, 17 Jan 2015)
New Revision: 31456
Modified:
check-external/unknown-packages.py
Log:
unknown-packages.py: bug fixing
Modified: check-external/unknown-packages.py
===================================================================
--- check-external/unknown-packages.py 2015-01-17 21:56:14 UTC (rev 31455)
+++ check-external/unknown-packages.py 2015-01-17 21:57:02 UTC (rev 31456)
@@ -52,7 +52,7 @@
else: return data['pkg_infos']['suites']
def inExperimental(pkg):
- pass #nothing for now
+ print pkg, "in experimental"
def removeIt(pkg):
with open(remove_pkgs, 'a') as file:
@@ -64,7 +64,7 @@
suites = fromSources(pkg)
if len(suites) >0:
if 'experimental' in suites : inExperimental(pkg)
- removeIt(pkg)
+ else: removeIt(pkg)
else:
if checkInPTS(pkg): removeIt(pkg)
else: print pkg #UNKNOWN
More information about the Secure-testing-commits
mailing list