]> kaliko git repositories - python-musicpd.git/commitdiff
Fixed confusing debug message
authorKaliko Jack <kaliko@azylum.org>
Sun, 25 Feb 2024 13:23:20 +0000 (14:23 +0100)
committerKaliko Jack <kaliko@azylum.org>
Sun, 25 Feb 2024 13:23:20 +0000 (14:23 +0100)
Removed "@" in front of hostname to avoid confusion with abstract socket

musicpd.py

index e6b1c05b44829f33abdb46e4e99a113f8d62276d..2fa12339d9216214b2a604cf2c515d7791f55041 100644 (file)
@@ -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')