Skip to content

Commit

Permalink
Merge pull request #24 from github/primetheus/bug-fix-19
Browse files Browse the repository at this point in the history
fixed the store-const error
  • Loading branch information
Jared Murrell authored Mar 31, 2020
2 parents 459f382 + 730fab7 commit 4250b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SAMLTeamSyncAD.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def main():
default=False, const=True, action="store_const")
parser.add_argument("-i", "--init", dest="initfile", help="Full path to settings.yml file. Default is "
"settings.yml in your current directory", default=None)
parser.add_argument("-n", "--skip-null", dest="skip_null", const=True, default=False,
parser.add_argument("-n", "--skip-null", dest="skip_null", const=True, default=False, action="store_const",
help="Skip empty groups in Active Directory, to avoid emptying the GitHub group")
args = parser.parse_args()

Expand Down

0 comments on commit 4250b42

Please sign in to comment.