From c7a4b606544cdee95d68ca9834cd5bca399570e5 Mon Sep 17 00:00:00 2001 From: Tomas Edwardsson Date: Sun, 14 Jul 2013 22:46:08 +0000 Subject: [PATCH] Missing first char of package name --- check_pkgkit/check_pkgkit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_pkgkit/check_pkgkit b/check_pkgkit/check_pkgkit index 2be36a6..d258c2c 100644 --- a/check_pkgkit/check_pkgkit +++ b/check_pkgkit/check_pkgkit @@ -28,7 +28,7 @@ def pkcon_get_updates(): results_section = True elif results_section: update_type = line[:13].replace(' ', '') - update_package = line [14:].strip() + update_package = line [13:].strip() if update_type not in update_types: update_types[update_type] = []