From: Sylvain Afchain Date: Mon, 12 Aug 2013 11:22:35 +0000 (+0200) Subject: Add missing space in the message produced by @log X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=a4cd43f998e4f0d34be4cca8269a920fbfed1a46;p=openstack-build%2Fneutron-build.git Add missing space in the message produced by @log Fixes bug: #1211275 Change-Id: I06140058cd4e0819cc9e8879516e54f67f54836d --- 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