diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-04-04 16:00:17 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-04-05 09:45:20 -0400 |
commit | 92f30679793ca85c545481e2362858ed73aa357f (patch) | |
tree | e0a220f82fc7dfb377069502faa203a4c73b406c /roles/lib_openshift/library | |
parent | 68a20d2d6371da77a640d9d79d3fa7cf6edb5319 (diff) | |
download | openshift-92f30679793ca85c545481e2362858ed73aa357f.tar.gz openshift-92f30679793ca85c545481e2362858ed73aa357f.tar.bz2 openshift-92f30679793ca85c545481e2362858ed73aa357f.tar.xz openshift-92f30679793ca85c545481e2362858ed73aa357f.zip |
Fixed a string format and a lint space issue
Diffstat (limited to 'roles/lib_openshift/library')
-rw-r--r-- | roles/lib_openshift/library/oc_obj.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/lib_openshift/library/oc_obj.py b/roles/lib_openshift/library/oc_obj.py index 5a90f1805..0b01670c6 100644 --- a/roles/lib_openshift/library/oc_obj.py +++ b/roles/lib_openshift/library/oc_obj.py @@ -1450,7 +1450,7 @@ class OCObject(OpenShiftCLI): '''return a kind by name ''' results = self._get(self.kind, name=self.name, selector=self.selector) if (results['returncode'] != 0 and 'stderr' in results and - '\"%s\" not found' % self.name in results['stderr']): + '\"{}\" not found'.format(self.name) in results['stderr']): results['returncode'] = 0 return results @@ -1647,7 +1647,7 @@ def main(): force=dict(default=False, type='bool'), selector=dict(default=None, type='str'), ), - mutually_exclusive=[["content", "files"],["selector", "name"]], + mutually_exclusive=[["content", "files"], ["selector", "name"]], supports_check_mode=True, ) |