Shortened check for wrapping accents in StringsFile.read.
This commit is contained in:
parent
77acb33773
commit
e76e63909c
1 changed files with 2 additions and 3 deletions
|
@ -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'
|
||||
|
|
Reference in a new issue