Skip to content

Commit

Permalink
Fix calling get_vk_token
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizordec authored Jan 14, 2023
1 parent 4efdbd3 commit 01a56c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def get_validated_vk_token(
if exit_on_error:
sys.exit(err_msg)
else:
current_token = await get_vk_token("", login, password, exit_on_error=True, is_kate=is_kate)
current_token = await get_vk_token(login, password, "", exit_on_error=True, is_kate=is_kate)
finally:
await vk_user.http_client.close()
return current_token
Expand Down

0 comments on commit 01a56c2

Please sign in to comment.