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.
This commit is contained in:
wm4 2013-10-14 23:48:18 +02:00
parent 7cbb7b680c
commit f0a5ff39a1
1 changed files with 1 additions and 1 deletions

View File

@ -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")