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: for entry in operations:
run_operations(pkgman, entry) run_operations(pkgman, entry)
operations = libcalamares.globalstorage.value("packageOperations") if libcalamares.globalstorage.contains("pagkageOperations"):
for entry in operations: operations = libcalamares.globalstorage.value("packageOperations")
run_operations(pkgman, entry) for entry in operations:
run_operations(pkgman, entry)
return None return None