summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-01-05 09:19:32 +0000
committerGerrit Code Review <review@openstack.org>2016-01-05 09:19:33 +0000
commit4594a8a10cdd443a9504e9c411f8c5206b3a3795 (patch)
treeb4816b399e949d96df8de0a38000a1fe04086f5b
parent342a12403bd933c3298260d47209546529e1f928 (diff)
parent771402f2e92d9977a33a88da0ec2210365d0a16a (diff)
downloadtempest-lib-4594a8a10cdd443a9504e9c411f8c5206b3a3795.tar.gz
Merge "Change LOG.warn to LOG.warning"
-rw-r--r--tempest_lib/cli/output_parser.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tempest_lib/cli/output_parser.py b/tempest_lib/cli/output_parser.py
index 668407a..cdc5852 100644
--- a/tempest_lib/cli/output_parser.py
+++ b/tempest_lib/cli/output_parser.py
@@ -112,9 +112,9 @@ def tables(output_lines):
if label is None:
label = line
else:
- LOG.warn('Invalid line between tables: %s' % line)
+ LOG.warning('Invalid line between tables: %s' % line)
if len(table_) > 0:
- LOG.warn('Missing end of table')
+ LOG.warning('Missing end of table')
return tables_
@@ -140,7 +140,7 @@ def table(output_lines):
columns = _table_columns(line)
continue
if '|' not in line:
- LOG.warn('skipping invalid table line: %s' % line)
+ LOG.warning('skipping invalid table line: %s' % line)
continue
row = []
for col in columns: