# HG changeset patch # User Martin Geisler # Date 2009-03-29 19:52:43 # Node ID 016d6357646d9bcc2e170cadd09fb684d767aba1 # Parent 06bf7600924966c5cab92629a15a26d5613ad763 httprepo: lowercase debug output diff --git a/mercurial/httprepo.py b/mercurial/httprepo.py --- a/mercurial/httprepo.py +++ b/mercurial/httprepo.py @@ -103,7 +103,7 @@ class httprepository(repo.repository): if not (proto.startswith('application/mercurial-') or proto.startswith('text/plain') or proto.startswith('application/hg-changegroup')): - self.ui.debug(_("Requested URL: '%s'\n") % cu) + self.ui.debug(_("requested URL: '%s'\n") % cu) raise error.RepoError(_("'%s' does not appear to be an hg repository") % self._url)