aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2011-09-21 03:23:47 +0500
committerWaqas Hussain <waqas20@gmail.com>2011-09-21 03:23:47 +0500
commit3c72dc07e5ee7d9cf7c90b8744cc9daa3984a414 (patch)
tree6e1db5d2bacc2936165186f0a3a540131167c77b /prosody
parentab05b98bf168ce1958d845b70e82e00114e07e20 (diff)
downloadprosody-3c72dc07e5ee7d9cf7c90b8744cc9daa3984a414.tar.gz
prosody-3c72dc07e5ee7d9cf7c90b8744cc9daa3984a414.zip
prosody: Invalid escape sequence in componentmanager deprecation warning (can cause luajit to throw).
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody b/prosody
index 3f328433..b354089b 100755
--- a/prosody
+++ b/prosody
@@ -338,7 +338,7 @@ function load_secondary_libraries()
require "core.sessionmanager"
require "core.stanza_router"
package.loaded['core.componentmanager'] = setmetatable({},{__index=function()
- log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[\s\t]*([^\n]*)"));
+ log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[ \t]*([^\n]*)"));
return function() end
end});