Refactor wrong super() parents in a few managers.
This commit is contained in:
parent
4699b38b31
commit
a09835049b
5 changed files with 13 additions and 13 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue