aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-07 13:06:06 +0200
committerKim Alvefur <zash@zash.se>2017-04-07 13:06:06 +0200
commit8716255d0c2e6467267d1f0d6bea6ecfaaa2aa2b (patch)
treeb1ba64f234dfffacfb6be5f822f1a17eb2d00e8d /tools
parentmod_storage_none: Add a noop archive delete method (diff)
downloadprosody-8716255d0c2e6467267d1f0d6bea6ecfaaa2aa2b.tar.xz
prosody-8716255d0c2e6467267d1f0d6bea6ecfaaa2aa2b.zip
migrator: Remove broken distinction between a load error or a missing storage handler (worked with module()?)
Diffstat (limited to 'tools')
-rw-r--r--tools/migration/prosody-migrator.lua9
1 files changed, 2 insertions, 7 deletions
diff --git a/tools/migration/prosody-migrator.lua b/tools/migration/prosody-migrator.lua
index 6cff9f671..1219d891b 100644
--- a/tools/migration/prosody-migrator.lua
+++ b/tools/migration/prosody-migrator.lua
@@ -77,13 +77,8 @@ function load_store_handler(name)
else
local ok, err = pcall(require, "migrator."..store_type);
if not ok then
- if package.loaded["migrator."..store_type] then
- print(("Error: Failed to initialize '%s' store:\n\t%s")
- :format(name, err));
- else
- print(("Error: Unrecognised store type for '%s': %s")
- :format(from_store, store_type));
- end
+ print(("Error: Failed to initialize '%s' store:\n\t%s")
+ :format(name, err));
return false;
end
end