libs/uvl: fix syntax error introduced with r5861

This commit is contained in:
Jo-Philipp Wich 2010-03-18 17:03:14 +00:00
parent e301256632
commit c91c64b927

View file

@ -120,7 +120,7 @@ end
function error.string(self,pad) function error.string(self,pad)
pad = pad or " " pad = pad or " "
local str = i18n(ERRCODES[self.code] or self.code]) local str = i18n(ERRCODES[self.code] or self.code)
:gsub("\n", "\n"..pad) :gsub("\n", "\n"..pad)
:gsub("%%i", self:cid()) :gsub("%%i", self:cid())
:gsub("%%I", self:sid()) :gsub("%%I", self:sid())