changed an error message to make it slightly more clear
This commit is contained in:
parent
25e61b9a79
commit
9b7d01c402
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class FloweryAPI:
|
||||||
"""
|
"""
|
||||||
if len(text) > 2048:
|
if len(text) > 2048:
|
||||||
if not self.config.allow_truncation:
|
if not self.config.allow_truncation:
|
||||||
raise ValueError('Text must be less than 2048 characters')
|
raise ValueError('Text must be less than or equal to 2048 characters')
|
||||||
self.config.logger.warning('Text is too long, will be truncated to 2048 characters by the API')
|
self.config.logger.warning('Text is too long, will be truncated to 2048 characters by the API')
|
||||||
params = {
|
params = {
|
||||||
'text': text,
|
'text': text,
|
||||||
|
|
Loading…
Reference in a new issue