diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2017-10-19 00:28:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-19 00:28:51 (GMT) |
commit | 0b6a118a45ac2eded1348fea6ed300d5651f7471 (patch) | |
tree | c4669de7f6be919053a564411ff6b8f559eb1fa9 /Misc | |
parent | 032a6480e360427d4f964e31643604fad804ea14 (diff) | |
download | cpython-0b6a118a45ac2eded1348fea6ed300d5651f7471.zip cpython-0b6a118a45ac2eded1348fea6ed300d5651f7471.tar.gz cpython-0b6a118a45ac2eded1348fea6ed300d5651f7471.tar.bz2 |
bpo-31457: Make the `LoggerAdapter.manager` property settable (#4042)
Due to a bug in the initial fix, the setter was in fact creating a different
property. This is now fixed.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-10-18-16-48-09.bpo-31457._ovmzp.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-18-16-48-09.bpo-31457._ovmzp.rst b/Misc/NEWS.d/next/Library/2017-10-18-16-48-09.bpo-31457._ovmzp.rst new file mode 100644 index 0000000..1a59dce --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-10-18-16-48-09.bpo-31457._ovmzp.rst @@ -0,0 +1 @@ +The ``manager`` property on LoggerAdapter objects is now properly settable. |