From: Hans Feldt Date: Thu, 21 May 2015 09:20:53 +0000 (+0200) Subject: fix flake8 complaints X-Git-Tag: brahmaputra.1.0~246 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F22%2F622%2F2;p=yardstick.git fix flake8 complaints run_tests.sh now runs clean Change-Id: Idadebabfa9306cf750207326f5f0b5a35530af34 JIRA: - Signed-off-by: Hans Feldt --- diff --git a/yardstick/__init__.py b/yardstick/__init__.py index b799c765f..0c25416bd 100644 --- a/yardstick/__init__.py +++ b/yardstick/__init__.py @@ -12,7 +12,7 @@ import logging.config logging.basicConfig( level=logging.WARNING, - format='[%(asctime)s] %(name)-20s %(filename)s:%(lineno)d %(levelname)s %(message)s',#noqa + format='[%(asctime)s] %(name)-20s %(filename)s:%(lineno)d ' + '%(levelname)s %(message)s', # noqa datefmt='%m/%d/%y %H:%M:%S') logging.getLogger(__name__).setLevel(logging.INFO) -