Skip to content

Commit c6340a4

Browse files
author
Juliya Smith
authored
Bugfix/feedback after update (#38)
1 parent 9f0549f commit c6340a4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/code42cli/cmds/profile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from getpass import getpass
44

55
import code42cli.profile as cliprofile
6-
from code42cli.args import PROFILE_HELP, ArgConfig
6+
from code42cli.args import PROFILE_HELP
77
from code42cli.commands import Command
88
from code42cli.sdk_client import validate_connection
99
from code42cli.util import does_user_agree, print_error, print_no_existing_profile_message
@@ -97,7 +97,8 @@ def update_profile(name=None, server=None, username=None, disable_ssl_errors=Non
9797
profile = cliprofile.get_profile(name)
9898
cliprofile.update_profile(profile.name, server, username, disable_ssl_errors)
9999
_prompt_for_allow_password_set(profile.name)
100-
100+
print(u"Profile '{}' has been updated.".format(profile.name))
101+
101102

102103
def prompt_for_password_reset(name=None):
103104
"""Securely prompts for your password and then stores it using keyring."""

0 commit comments

Comments
 (0)