diff mercurial/httpconnection.py @ 17428:72803c8edaa4

avoid using abbreviations that look like spelling errors
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 27 Aug 2012 23:14:27 +0200
parents a814f8fcc65a
children 21503aa02d4f
line wrap: on
line diff
--- a/mercurial/httpconnection.py	Tue Aug 21 02:41:20 2012 +0200
+++ b/mercurial/httpconnection.py	Mon Aug 27 23:14:27 2012 +0200
@@ -73,7 +73,7 @@
     if '://' in uri:
         scheme, hostpath = uri.split('://', 1)
     else:
-        # py2.4.1 doesn't provide the full URI
+        # Python 2.4.1 doesn't provide the full URI
         scheme, hostpath = 'http', uri
     bestuser = None
     bestlen = 0