Missing first char of package name

This commit is contained in:
Tomas Edwardsson 2013-07-14 22:46:08 +00:00
parent be5d1ce505
commit c7a4b60654
1 changed files with 1 additions and 1 deletions

View File

@ -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] = []