Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit d44c28f

Browse files
committed
Added "stack_info" as reserved attribute (introduced in Python 3.2)
1 parent dec4d44 commit d44c28f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pythonjsonlogger/jsonlogger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'args', 'asctime', 'created', 'exc_info', 'exc_text', 'filename',
2020
'funcName', 'levelname', 'levelno', 'lineno', 'module',
2121
'msecs', 'message', 'msg', 'name', 'pathname', 'process',
22-
'processName', 'relativeCreated', 'thread', 'threadName')
22+
'processName', 'relativeCreated', 'stack_info', 'thread', 'threadName')
2323

2424
RESERVED_ATTR_HASH = dict(zip(RESERVED_ATTRS, RESERVED_ATTRS))
2525

0 commit comments

Comments
 (0)