From 2399137b973746fdc4286856e1d78c22c7fcaff1 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 25 Feb 2024 14:23:20 +0100 Subject: [PATCH] Fixed confusing debug message Removed "@" in front of hostname to avoid confusion with abstract socket --- musicpd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicpd.py b/musicpd.py index e6b1c05..2fa1233 100644 --- a/musicpd.py +++ b/musicpd.py @@ -349,7 +349,7 @@ class MPDClient: else: # MPD_HOST is a plain host self.host = _host - log.debug('host detected in MPD_HOST: @%s', self.host) + log.debug('host detected in MPD_HOST: %s', self.host) else: # Is socket there xdg_runtime_dir = os.getenv('XDG_RUNTIME_DIR', '/run') -- 2.39.2