Add missing string format parameter when loggign property changes

This commit is contained in:
Adrian Perez de Castro
2016-07-04 03:16:46 +03:00
parent b861b37dbb
commit c1492cd39a

View File

@@ -63,7 +63,7 @@ local function set_string_list_property(self, name, new_value)
table.sort(old_value)
table.sort(new_value)
if sorted_string_list_eq(old_value, new_value) then
self:_log(".%s: [%s] (unachanged)", table.concat(old_value, ", "))
self:_log(".%s: [%s] (unchanged)", name, table.concat(old_value, ", "))
return false
else
self[name] = new_value