1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-01 14:39:13 +00:00

fixed nil value call error while converting old sytax config

This commit is contained in:
Bojan Novkovic 2020-08-30 12:50:52 +02:00 committed by Brenden Matthews
parent ae1551da1b
commit 1abae95253

View File

@ -156,5 +156,5 @@ if conky == nil then
output:write(converted);
output:close();
else
return assert(loadstring(converted, 'converted config'));
return assert(load(converted, 'converted config'));
end;