Add missing pass keyword

This commit is contained in:
Joseph Schorr 2016-07-19 22:24:27 -04:00
parent 2ba1f5435a
commit 4d6f96cd6c

View file

@ -43,6 +43,7 @@ def add_storage_placement(storage, location_name):
ImageStoragePlacement.create(location=location.id, storage=storage)
except IntegrityError:
# Placement already exists. Nothing to do.
pass
def garbage_collect_storage(storage_id_whitelist):