1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-19 11:35:12 +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:write(converted);
output:close(); output:close();
else else
return assert(loadstring(converted, 'converted config')); return assert(load(converted, 'converted config'));
end; end;