From 14cbbefdde377fafb52fe306956cd91c68d39d8e Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 26 Mar 2021 11:38:03 +0100 Subject: fix; make python 3.7 happy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ……… --- poezio/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poezio/config.py b/poezio/config.py index fd3d8c83..9ecb4748 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -735,7 +735,7 @@ firstrun = False config = Config(Path('/dev/null')) # The logger object for this module -log: logging.Logger = logging.getLogger(__name__) +log = logging.getLogger(__name__) # type: logging.Logger # The command-line options options = None -- cgit v1.2.3