Add an AttributeError exception for CI tests
This commit is contained in:
@ -55,6 +55,7 @@ def get_wrapped_text(text, font, content_width):
|
||||
low = 0
|
||||
high = len(text)
|
||||
|
||||
try:
|
||||
# ideal length is determined via binary search
|
||||
while low < high:
|
||||
mid = math.floor(low + high)
|
||||
@ -64,6 +65,8 @@ def get_wrapped_text(text, font, content_width):
|
||||
low = mid
|
||||
else:
|
||||
high = mid - 1
|
||||
except AttributeError:
|
||||
wrapped_text = text
|
||||
|
||||
return wrapped_text
|
||||
|
||||
|
Reference in New Issue
Block a user