mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 22:54:27 -04:00
limit length of stringified arg_vals in exceptions
This commit is contained in:
parent
8b50fee0f5
commit
cc3d1e9cc9
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ def enforce_types(func):
|
||||||
annotation.__name__,
|
annotation.__name__,
|
||||||
type(arg_val).__name__,
|
type(arg_val).__name__,
|
||||||
arg_key,
|
arg_key,
|
||||||
arg_val,
|
str(arg_val)[:64],
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue