Skip to content

Commit

Permalink
fix typo in arg handling in tsdashboard app
Browse files Browse the repository at this point in the history
  • Loading branch information
slogan621 committed Jun 12, 2021
1 parent bae3f03 commit 9ed4e4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/tsdashboard/tsdashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,10 +769,10 @@ def main():
for o, a in opts:
if o == "-h":
host = a
if o == "-v":
elif o == "-v":
printVersion()
sys.exit(1)
if o == "-?":
elif o == "-?":
usage()
sys.exit(1)
elif o == "-p":
Expand Down

0 comments on commit 9ed4e4b

Please sign in to comment.