Skip to content

Commit

Permalink
Force API key str type conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapazog committed Sep 10, 2019
1 parent 431e068 commit 7c97c1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mxfirewallcontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
# The full manual for this script can be found here:
# https://github.com/meraki/automation-scripts/blob/master/mxfirewallcontrol_manual.pdf
#
# This file was last modified on 2017-11-09


import sys, getopt, requests, json, time, datetime, os, re
Expand Down Expand Up @@ -1129,7 +1128,7 @@ def main(argv):
printhelp()
sys.exit()
elif opt == '-k':
arg_apikey = arg
arg_apikey = str(arg)
elif opt == '-o':
arg_org = arg
elif opt == '-f':
Expand Down

0 comments on commit 7c97c1b

Please sign in to comment.