summaryrefslogtreecommitdiffstats
path: root/api/utils/influx.py
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-02-16 06:30:28 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-16 06:30:28 +0000
commit1eb4b53c4a7e34c592337ba26583d13d40c9630a (patch)
treea1a97095e1799683cd2281c1b88a68ef530a9c23 /api/utils/influx.py
parent2c07b32c372594e5d0a936e76baca80ff87993c7 (diff)
parentc6d584f5e050cf79eb640bae3d6ca36e2788890f (diff)
Merge "pylint fixes: remove redundant parens, fix comparison order"
Diffstat (limited to 'api/utils/influx.py')
-rw-r--r--api/utils/influx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/utils/influx.py b/api/utils/influx.py
index 275c63a24..08996b9c9 100644
--- a/api/utils/influx.py
+++ b/api/utils/influx.py
@@ -24,7 +24,7 @@ def get_data_db_client():
try:
parser.read(conf.OUTPUT_CONFIG_FILE_PATH)
- if 'influxdb' != parser.get('DEFAULT', 'dispatcher'):
+ if parser.get('DEFAULT', 'dispatcher') != 'influxdb':
raise RuntimeError
return _get_client(parser)