From cfd3cfcff8ba98b5779be69d83323b4fb682498e Mon Sep 17 00:00:00 2001 From: Tomas Edwardsson Date: Sun, 14 Jul 2013 22:46:30 +0000 Subject: [PATCH] Print package names --- check_pkgkit/check_pkgkit | 2 ++ 1 file changed, 2 insertions(+) diff --git a/check_pkgkit/check_pkgkit b/check_pkgkit/check_pkgkit index d258c2c..a74f4b9 100644 --- a/check_pkgkit/check_pkgkit +++ b/check_pkgkit/check_pkgkit @@ -41,6 +41,8 @@ def main(): for update_type in pkg_updates: print "%s: %i" % (update_type, len(pkg_updates[update_type])) + for pkg in pkg_updates[update_type]: + print " %s" % pkg if __name__ == "__main__": main()