Fix messages

This commit is contained in:
allegroai 2022-08-01 18:57:36 +03:00
parent 71d2ab4ce7
commit 48a145a8bd
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ def main():
" Bitbucket: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/\n" " Bitbucket: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/\n"
" GitLab: https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html\n" " GitLab: https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html\n"
) )
print('Enter git password token for user \'{}\': '.format(git_user), end='') print('Enter git personal token for user \'{}\': '.format(git_user), end='')
git_pass = input() git_pass = input()
print('Git repository cloning will be using user={} token={}'.format(git_user, git_pass)) print('Git repository cloning will be using user={} token={}'.format(git_user, git_pass))
else: else:

View File

@ -22,7 +22,7 @@ WORKER_ARGS = {
'help': 'git username for repository access', 'help': 'git username for repository access',
}, },
'--git-pass': { '--git-pass': {
'help': 'git password for repository access', 'help': 'git password (personal access tokens) for repository access',
}, },
'--log-level': { '--log-level': {
'help': 'SDK log level', 'help': 'SDK log level',