diff options
author | Hans Feldt <hans.feldt@ericsson.com> | 2015-05-21 11:20:53 +0200 |
---|---|---|
committer | Hans Feldt <hans.feldt@ericsson.com> | 2015-05-21 10:50:32 +0000 |
commit | 311d1c36cbd4abea441ee45e37463fad9cf92849 (patch) | |
tree | 46813a953067cfce39629022638dbaff1ed65fbb | |
parent | 22c9496a9f0c88991d6d3dedd7f0b6443452901b (diff) |
fix flake8 complaints
run_tests.sh now runs clean
Change-Id: Idadebabfa9306cf750207326f5f0b5a35530af34
JIRA: -
Signed-off-by: Hans Feldt <hans.feldt@ericsson.com>
-rw-r--r-- | yardstick/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) - |