hgext/schemes.py
changeset 17425 e95ec38f86b0
parent 16743 38caf405d010
child 18910 b52404a914a9
--- a/hgext/schemes.py	Wed Aug 15 22:38:42 2012 +0200
+++ b/hgext/schemes.py	Wed Aug 15 22:39:18 2012 +0200
@@ -61,7 +61,7 @@
         return '<ShortRepository: %s>' % self.scheme
 
     def instance(self, ui, url, create):
-        # Should this use urlmod.url(), or is manual parsing better?
+        # Should this use the util.url class, or is manual parsing better?
         url = url.split('://', 1)[1]
         parts = url.split('/', self.parts)
         if len(parts) > self.parts: