Shortened check for wrapping accents in StringsFile.read.

This commit is contained in:
Sebastian Ludwig 2015-11-27 15:55:35 +01:00
parent 77acb33773
commit e76e63909c

View file

@ -148,9 +148,8 @@ module Twine
if match
key = match[1].strip
value = match[2].strip
if value[0,1] == '`' && value[-1,1] == '`'
value = value[1..-2]
end
value = value[1..-2] if value[0] == '`' && value[-1] == '`'
case key
when 'comment'