changeset 3242:6d0137022df2

bridge (dbus): fixed typo in log.warning
author Goffi <goffi@goffi.org>
date Wed, 01 Apr 2020 15:32:18 +0200
parents 46f0b388eeea
children f2e30aa031e9
files sat_frontends/bridge/dbus_bridge.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sat_frontends/bridge/dbus_bridge.py	Tue Mar 31 08:45:49 2020 +0200
+++ b/sat_frontends/bridge/dbus_bridge.py	Wed Apr 01 15:32:18 2020 +0200
@@ -127,7 +127,7 @@
                             pass
                     # at this point, kwargs should be empty
                     if kwargs:
-                        log.warnings("unexpected keyword arguments, they will be ignored: {}".format(kwargs))
+                        log.warning("unexpected keyword arguments, they will be ignored: {}".format(kwargs))
                 elif len(args) >= 2 and callable(args[-1]) and callable(args[-2]):
                     async_ = True
                     _errback = args.pop()