aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_admin_shell.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua
index c652fa96..9268b372 100644
--- a/plugins/mod_admin_shell.lua
+++ b/plugins/mod_admin_shell.lua
@@ -1535,7 +1535,7 @@ function def_env.user:create(jid, password, role)
end
local ok, err = um.enable_user(username, host);
- if not ok and err ~= "method-not-implemented" then
+ if not ok and err ~= "method not implemented" then
return nil, "Could not enable user: "..err;
end
end