From a4cd43f998e4f0d34be4cca8269a920fbfed1a46 Mon Sep 17 00:00:00 2001 From: Sylvain Afchain Date: Mon, 12 Aug 2013 13:22:35 +0200 Subject: [PATCH] Add missing space in the message produced by @log Fixes bug: #1211275 Change-Id: I06140058cd4e0819cc9e8879516e54f67f54836d --- neutron/common/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/common/log.py b/neutron/common/log.py index 2c0e7af69..fcc57b896 100644 --- a/neutron/common/log.py +++ b/neutron/common/log.py @@ -29,6 +29,6 @@ def log(method): "method_name": method.__name__, "args": args[1:], "kwargs": kwargs} LOG.debug(_('%(class_name)s method %(method_name)s' - 'called with arguments %(args)s %(kwargs)s '), data) + ' called with arguments %(args)s %(kwargs)s '), data) return method(*args, **kwargs) return wrapper -- 2.45.2