Skip to content

Commit 977f88c

Browse files
author
Matthew Fisher
committed
Merge pull request #3064 from bacongobbler/client-cancel
fix(client): display default answer for auth:cancel prompt
2 parents 43e053c + 4295eea commit 977f88c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ def auth_cancel(self, args):
753753
self._logger.info('Please log in again in order to cancel this account')
754754
username = self.auth_login({'<controller>': controller})
755755
if username:
756-
confirm = raw_input("Cancel account \"{}\" at {}? (y/n) ".format(username, controller))
756+
confirm = raw_input("Cancel account \"{}\" at {}? (y/N) ".format(username, controller))
757757
if confirm == 'y':
758758
self._dispatch('delete', '/v1/auth/cancel')
759759
self._settings['controller'] = None

0 commit comments

Comments
 (0)