Fix typo in variable name
This commit is contained in:
parent
5016dc40fc
commit
da7835da1d
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ class Rhn(RegistrationBase):
|
|||
# Enable requested repoid's
|
||||
for wanted_channel in channels:
|
||||
# Each inserted repo regexp will be matched. If no match, no success.
|
||||
for availaible_channel in stdout.rstrip().split('\n'): # .rstrip() because of \n at the end -> empty string at the end
|
||||
for available_channel in stdout.rstrip().split('\n'): # .rstrip() because of \n at the end -> empty string at the end
|
||||
if re.search(wanted_repo, available_channel):
|
||||
rc, stdout, stderr = self.module.run_command(rhn_channel_cmd + " --add --channel=%s" % available_channel, check_rc=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue