From 0577c08d54d1a452cd077c1e3b6b71f1e021f110 Mon Sep 17 00:00:00 2001 From: A_D Date: Fri, 18 Sep 2020 23:05:40 +0200 Subject: [PATCH] Fixed module docstring --- docs/examples/click_counter/load.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/click_counter/load.py b/docs/examples/click_counter/load.py index 7a4c9f49..02403f2f 100644 --- a/docs/examples/click_counter/load.py +++ b/docs/examples/click_counter/load.py @@ -1,7 +1,7 @@ """ Example EDMC plugin. -It adds a single button to the EDMC interface that displays the number of times it has been reset. +It adds a single button to the EDMC interface that displays the number of times it has been clicked. """ import logging @@ -13,7 +13,7 @@ from config import appname, config PLUGIN_NAME = "ClickCounter" -logger = logging.getLogger(f"{appname}") +logger = logging.getLogger(f"{appname}.{PLUGIN_NAME}") class ClickCounter: