diff options
author | Kim Alvefur <zash@zash.se> | 2023-06-18 16:48:56 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-06-18 16:48:56 +0200 |
commit | af2cf5f188a2bf62da97453f0d21e282f7f67985 (patch) | |
tree | 72d197ff9525742da98532f48a6ac0ad3b3cd261 /util/fsm.lua | |
parent | 597f3c7f0aa39c347dad671cf682742b4d40a914 (diff) | |
download | prosody-af2cf5f188a2bf62da97453f0d21e282f7f67985.tar.gz prosody-af2cf5f188a2bf62da97453f0d21e282f7f67985.zip |
renamening: Fix newly added imports to use the new namespace
Diffstat (limited to 'util/fsm.lua')
-rw-r--r-- | util/fsm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/fsm.lua b/util/fsm.lua index 94a543d1..0afc2d16 100644 --- a/util/fsm.lua +++ b/util/fsm.lua @@ -1,4 +1,4 @@ -local events = require "util.events"; +local events = require "prosody.util.events"; local fsm_methods = {}; local fsm_mt = { __index = fsm_methods }; |