From 108f93a532b922b2945b8471e6a8e9723a7181aa Mon Sep 17 00:00:00 2001 From: Pavel Rochnyack Date: Wed, 1 May 2019 20:27:01 +0700 Subject: [PATCH] lua plugin: remove line feed in error message --- src/lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua.c b/src/lua.c index b5d3ce54..5f8f9645 100644 --- a/src/lua.c +++ b/src/lua.c @@ -469,7 +469,7 @@ static int lua_script_load(const char *script_path) /* {{{ */ "In addition, no error message could be retrieved from the stack.", status); else - ERROR("Lua plugin: Executing script \"%s\" failed:\n%s", + ERROR("Lua plugin: Executing script \"%s\" failed: %s", script_path, errmsg); } -- 2.11.0