Skip to content

Commit

Permalink
Don't call route if we're setting up.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjolley committed Oct 23, 2024
1 parent 1e48bea commit 5b4ec84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigsdb_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def main():
(token, secret) = retrieve_token("session")
if not token or not secret:
(token, secret) = get_new_session_token()

get_route(args.url, token, secret)
if not args.setup:
get_route(args.url, token, secret)


def check_required_args(args):
Expand Down

0 comments on commit 5b4ec84

Please sign in to comment.