From fa7ffa32f0484c45a665de2766a97ae7a23a0b6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Wed, 24 Feb 2016 13:42:34 +0100 Subject: [PATCH] Tweak wording of password prompt iCloud is branded with a lower case 'i' like most other Apple products. --- pyicloud/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyicloud/utils.py b/pyicloud/utils.py index edccde3..1c08c92 100644 --- a/pyicloud/utils.py +++ b/pyicloud/utils.py @@ -15,7 +15,7 @@ def get_password(username, interactive=True): raise return getpass.getpass( - 'ICloud Password for {username}: '.format( + 'Enter iCloud password for {username}: '.format( username=username, ) )