Refactor wrong super() parents in a few managers.

This commit is contained in:
Griatch 2017-01-26 21:35:13 +01:00
parent 4699b38b31
commit a09835049b
5 changed files with 13 additions and 13 deletions

View file

@ -864,7 +864,7 @@ class DefaultObject(with_metaclass(TypeclassBase, ObjectDB)):
self.location = None # this updates contents_cache for our location
# Perform the deletion of the object
super(ObjectDB, self).delete()
super(DefaultObject, self).delete()
return True
def access(self, accessing_obj, access_type='read', default=False, no_superuser_bypass=False, **kwargs):