states/github.py fix for incorrect positional argument

This commit is contained in:
Todd Wells 2018-06-08 14:12:46 -07:00 committed by rallytime
parent ffee3576ec
commit 265b22b194
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -713,8 +713,8 @@ def repo_present(
ret['result'] = None
else:
result = __salt__['github.add_team_repo'](name, team_name,
permission,
profile=profile)
profile=profile,
permission=permission)
if result:
ret['changes'][team_name] = team_change
else: