Mercurial > public > mercurial-scm > hg
diff mercurial/ui.py @ 7600:f7739cf3833c
lowercase prompts
The prompts are interactive and not meant for scripts.
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Sat, 03 Jan 2009 17:15:21 +0100 |
parents | f598df061fec |
children | 57fee79e5588 |
line wrap: on
line diff
--- a/mercurial/ui.py Sat Jan 03 17:15:21 2009 +0100 +++ b/mercurial/ui.py Sat Jan 03 17:15:21 2009 +0100 @@ -340,7 +340,7 @@ if user is None: user = os.environ.get("EMAIL") if user is None and self.configbool("ui", "askusername"): - user = self.prompt(_("Enter a commit username:"), default=None) + user = self.prompt(_("enter a commit username:"), default=None) if user is None: try: user = '%s@%s' % (util.getuser(), socket.getfqdn())