Skip to content

Commit

Permalink
Improve output of gengpgkey and register
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann committed Dec 13, 2018
1 parent 3db729a commit 37b71c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fbs/builtin_commands/_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def register():
username = prompt_for_value('Username')
email = prompt_for_value('Real email')
password = prompt_for_value('Password', password=True)
print('')
status, text = _server.post_json('register', {
'username': username, 'email': email, 'password': password
})
Expand All @@ -34,6 +35,7 @@ def login():
require_existing_project()
username = prompt_for_value('Username')
password = prompt_for_value('Password', password=True)
print('')
_login(username, password)

def _login(username, password):
Expand Down
1 change: 1 addition & 0 deletions fbs/builtin_commands/_gpg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def gengpgkey():
except KeyboardInterrupt:
print('')
return
print('')
_LOG.info('Generating the GPG key. This can take a little...')
_init_docker()
args = ['run', '-t']
Expand Down

0 comments on commit 37b71c5

Please sign in to comment.