extensions: remove erroneous comment
authorKevin Bullock <kbullock@ringworld.org>
Thu, 14 Feb 2013 13:56:02 -0600
changeset 18692 af4387d8d1c7
parent 18691 4f485bd68f1d
child 18693 633cd0c46e6a
extensions: remove erroneous comment We actually -do- use the 'ui' argument to print a debug statement.
mercurial/extensions.py
--- a/mercurial/extensions.py	Wed Feb 13 12:51:30 2013 -0800
+++ b/mercurial/extensions.py	Thu Feb 14 13:56:02 2013 -0600
@@ -50,7 +50,6 @@
             raise
 
 def load(ui, name, path):
-    # unused ui argument kept for backwards compatibility
     if name.startswith('hgext.') or name.startswith('hgext/'):
         shortname = name[6:]
     else: