Don't crash when packageOperations is empty

This commit is contained in:
Rohan Garg 2014-10-27 16:58:42 +01:00
parent a0a3b4dc49
commit fdd84d1f99

View File

@ -76,8 +76,9 @@ def run():
for entry in operations:
run_operations(pkgman, entry)
operations = libcalamares.globalstorage.value("packageOperations")
for entry in operations:
run_operations(pkgman, entry)
if libcalamares.globalstorage.contains("pagkageOperations"):
operations = libcalamares.globalstorage.value("packageOperations")
for entry in operations:
run_operations(pkgman, entry)
return None