mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Fix ambigous variable issue for pylint
This commit is contained in:
parent
e4f5a8eabe
commit
0bdaa4a78f
1 changed files with 2 additions and 2 deletions
|
|
@ -383,8 +383,8 @@ class PodmanModuleParams:
|
|||
|
||||
def addparam_label(self, c):
|
||||
for label in self.params['label'].items():
|
||||
c += ['--label', b'='.join([to_bytes(l, errors='surrogate_or_strict')
|
||||
for l in label])]
|
||||
c += ['--label', b'='.join([to_bytes(la, errors='surrogate_or_strict')
|
||||
for la in label])]
|
||||
return c
|
||||
|
||||
def addparam_label_file(self, c):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue