# HG changeset patch # User Goffi # Date 1585747938 -7200 # Node ID 6d0137022df2e59bb052333f2804acb999d56e39 # Parent 46f0b388eeeae93b265989ebe287f3b03c0ff6bb bridge (dbus): fixed typo in log.warning diff -r 46f0b388eeea -r 6d0137022df2 sat_frontends/bridge/dbus_bridge.py --- 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()