diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-02-16 06:30:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-16 06:30:28 +0000 |
commit | 1eb4b53c4a7e34c592337ba26583d13d40c9630a (patch) | |
tree | a1a97095e1799683cd2281c1b88a68ef530a9c23 /api/utils/common.py | |
parent | 2c07b32c372594e5d0a936e76baca80ff87993c7 (diff) | |
parent | c6d584f5e050cf79eb640bae3d6ca36e2788890f (diff) |
Merge "pylint fixes: remove redundant parens, fix comparison order"
Diffstat (limited to 'api/utils/common.py')
-rw-r--r-- | api/utils/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/utils/common.py b/api/utils/common.py index 1c800ce49..3e9bf8f8b 100644 --- a/api/utils/common.py +++ b/api/utils/common.py @@ -33,7 +33,7 @@ def get_command_list(command_list, opts, args): command_list.append(args) - command_list.extend(('--{}'.format(k) for k in opts if 'task-args' != k)) + command_list.extend(('--{}'.format(k) for k in opts if k != 'task-args')) task_args = opts.get('task-args', '') if task_args: |