diff --git a/plinth/modules/backups/forms.py b/plinth/modules/backups/forms.py index c89cdc32c..2b101eed6 100644 --- a/plinth/modules/backups/forms.py +++ b/plinth/modules/backups/forms.py @@ -57,7 +57,7 @@ def _get_repository_choices(): choices = [('root', ROOT_REPOSITORY_NAME)] storages = network_storage.get_storages() for storage in storages.values(): - if storage['verified']: + if storage.get('verified'): choices += [(storage['uuid'], storage['path'])] return choices