mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Bug #1737864: allow empty message in logging format routines.
This commit is contained in:
parent
072aaf7150
commit
75ec1dbd9d
1 changed files with 2 additions and 2 deletions
|
|
@ -398,7 +398,7 @@ class Formatter:
|
|||
traceback.print_exception(ei[0], ei[1], ei[2], None, sio)
|
||||
s = sio.getvalue()
|
||||
sio.close()
|
||||
if s[-1] == "\n":
|
||||
if s[-1:] == "\n":
|
||||
s = s[:-1]
|
||||
return s
|
||||
|
||||
|
|
@ -425,7 +425,7 @@ class Formatter:
|
|||
if not record.exc_text:
|
||||
record.exc_text = self.formatException(record.exc_info)
|
||||
if record.exc_text:
|
||||
if s[-1] != "\n":
|
||||
if s[-1:] != "\n":
|
||||
s = s + "\n"
|
||||
s = s + record.exc_text
|
||||
return s
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue