Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sshrepo.py @ 2473:30c267cb4c2f
change some repo messages in small ways.
move "pushing" and "pulling" after repo create so error message and exit
happens before messages printed.
fix sshrepo parse error message.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Wed, 21 Jun 2006 09:15:42 -0700 |
parents | 6ff30968f911 |
children | eabcda3ed0dd |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Wed Jun 21 09:14:36 2006 -0700 +++ b/mercurial/sshrepo.py Wed Jun 21 09:15:42 2006 -0700 @@ -18,7 +18,7 @@ m = re.match(r'ssh://(([^@]+)@)?([^:/]+)(:(\d+))?(/(.*))?', path) if not m: - raise hg.RepoError(_("couldn't parse destination %s") % path) + raise hg.RepoError(_("couldn't parse location %s") % path) self.user = m.group(2) self.host = m.group(3)