Skip to content

Commit

Permalink
tabs vs spaces - arggg!
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin authored Feb 5, 2018
1 parent 930ce84 commit cfa6b2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/example_always_use_https.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ def main():
try:
if sys.argv[1] == '--off':
update_flag = True
new_value = 'off'
new_value = 'off'
sys.argv.pop(1)
except IndexError:
pass

try:
if sys.argv[1] == '--on':
update_flag = True
new_value = 'on'
new_value = 'on'
sys.argv.pop(1)
except IndexError:
pass
Expand Down

0 comments on commit cfa6b2a

Please sign in to comment.