Skip to content

Commit

Permalink
fix(cli): fix bug in access token prompt for dataset export (#3256)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius authored Jan 18, 2023
1 parent 7d2094e commit d0701f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renku/core/dataset/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def prompt_access_token(exporter):
Returns:
The new access token
"""
text_prompt = f"You must configure an access token\nCreate one at: {exporter.access_token_url()}\nAccess token: "
text_prompt = f"You must configure an access token\nCreate one at: {exporter.get_access_token_url()}\nAccess token"
return communication.prompt(text_prompt, type=str)


Expand Down

0 comments on commit d0701f5

Please sign in to comment.