From 268d0bb03153d3c1522af2f8daf4e8bb2a6e94da Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Tue, 3 Dec 2024 08:57:37 +0100 Subject: [PATCH] Drop `six` leftover. (#99) --- docs/using-logging.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/using-logging.rst b/docs/using-logging.rst index ba41ad6..d5e913d 100644 --- a/docs/using-logging.rst +++ b/docs/using-logging.rst @@ -21,8 +21,7 @@ We can load this file and pass its contents to ``configureLoggers``: configureLoggers(f.read()) .. -> src - >>> import six - >>> six.exec_(src) + >>> exec(src) When this returns, the root logger is configured to output messages logged at INFO or above to the console, as we can see in the following