Commit fa3a6385 authored by Oliver Daßdorf's avatar Oliver Daßdorf Committed by oroulet

fixed wrong logger initialization

'__name__' -> __name__
parent 3b5d8c4a
...@@ -15,7 +15,7 @@ from .uaerrors import UaError ...@@ -15,7 +15,7 @@ from .uaerrors import UaError
from ..common.utils import Buffer from ..common.utils import Buffer
from .uatypes import type_from_optional, type_is_list, type_is_union, type_from_list, types_or_list_from_union, type_allow_subclass from .uatypes import type_from_optional, type_is_list, type_is_union, type_from_list, types_or_list_from_union, type_allow_subclass
logger = logging.getLogger('__name__') logger = logging.getLogger(__name__)
T = TypeVar('T') T = TypeVar('T')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment