Fix CalculateLength

This commit is contained in:
Star Brilliant 2013-09-17 05:46:24 +08:00
parent e02cfae5ad
commit 0e90c64f5d

View File

@ -126,7 +126,7 @@ def NeedWhiteBorder(rgb):
def CalculateLength(s): def CalculateLength(s):
return max(map(len, s.split('\\n'))) return max(map(len, s.split('\n')))
def ConvertType2(row, height, bottomReserved): def ConvertType2(row, height, bottomReserved):