Skip to content

Commit

Permalink
Fix post update hook
Browse files Browse the repository at this point in the history
  • Loading branch information
imjp94 committed Jun 1, 2023
1 parent 4cc3f9d commit 71712ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/gd-plug/plug.gd
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ func install(plugin):
set_installed_plugin(plugin)
if plugin.on_updated:
if has_method(plugin.on_updated):
logger.info("Execute post-update function for %s: %s" % [plugin.name, plugin.do])
logger.info("Execute post-update function for %s" % plugin.name)
_on_updated(plugin)
call(plugin.on_updated, plugin.duplicate())
emit_signal("updated", plugin)
Expand Down

0 comments on commit 71712ef

Please sign in to comment.