From a094e1ebee1b79146336816cc18dfb3bfe1c7793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Tue, 3 Nov 2020 05:41:32 +0100 Subject: [PATCH] fixed log name being bytes instead of string --- client-py3/full/src/uds/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-py3/full/src/uds/log.py b/client-py3/full/src/uds/log.py index 4c4446c4..4bd5ecf3 100644 --- a/client-py3/full/src/uds/log.py +++ b/client-py3/full/src/uds/log.py @@ -40,7 +40,7 @@ if sys.platform.startswith('linux'): from os.path import expanduser # pylint: disable=ungrouped-imports logFile = expanduser('~/udsclient.log') else: - logFile = os.path.join(tempfile.gettempdir(), b'udsclient.log') + logFile = os.path.join(tempfile.gettempdir(), 'udsclient.log') try: logging.basicConfig(