Logger error typo fix.
announce_move_from() exception currently claims to be at_announce_move(). No longer, with this change!
This commit is contained in:
parent
64b9f9e508
commit
6f4031fea3
1 changed files with 1 additions and 1 deletions
|
|
@ -928,7 +928,7 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase):
|
||||||
try:
|
try:
|
||||||
self.announce_move_from(destination, **kwargs)
|
self.announce_move_from(destination, **kwargs)
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
logerr(errtxt.format(err="at_announce_move()"), err)
|
logerr(errtxt.format(err="announce_move_from()"), err)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Perform move
|
# Perform move
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue