From f0a5ff39a11574a5b5b7398bce08be8a36428354 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 14 Oct 2013 23:48:18 +0200 Subject: osc: use "info" instead of "warn" for config file creation message When the main mpv config file, "info" is used, so this makes things consistent. --- mpvcore/lua/osc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpvcore/lua/osc.lua b/mpvcore/lua/osc.lua index 648fdc142f..d3deb97ac9 100644 --- a/mpvcore/lua/osc.lua +++ b/mpvcore/lua/osc.lua @@ -121,7 +121,7 @@ function read_config(options, identifier) local conffile = mp.find_config_file(conffilename) local f = io.open(conffile,"r") if f == nil then - msg.warn(conffile.." does not exist, creating it ...") + msg.info(conffile.." does not exist, creating it ...") -- so create it, write default options local f = io.open(conffile,"w+") f:write("# Config file for "..identifier.."\n# <-- works only at beginning of line.\n# Do not have any spare spaces flying around.\n\n") -- cgit v1.2.3