From: Christian Herdtweck Date: Tue, 3 Mar 2026 09:49:30 +0000 (+0100) Subject: Fix copy-paste error X-Git-Tag: v1.7.5~5 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=d7003f36bf20656497fec9a1ceccf78b88ed668c;p=pyi2ncommon Fix copy-paste error Not sure whether these shortcuts are used at all. --- diff --git a/src/sysmisc.py b/src/sysmisc.py index 43ff842..12c7f82 100644 --- a/src/sysmisc.py +++ b/src/sysmisc.py @@ -484,7 +484,7 @@ def err(fmt, *args): def wrn(fmt, *args): """Short name for WARN logging.""" - llog.error(fmt, *args) + llog.warning(fmt, *args) # these methods use the format capability