diff mercurial/extensions.py @ 9679:a1943c2a4661

pychecker: remove unused local variables
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sat, 31 Oct 2009 17:04:46 +0100
parents e0eae93e6c67
children 25e572394f5c
line wrap: on
line diff
--- a/mercurial/extensions.py	Sat Oct 31 16:56:58 2009 +0100
+++ b/mercurial/extensions.py	Sat Oct 31 17:04:46 2009 +0100
@@ -181,7 +181,6 @@
     '''return a dict of {name: desc} of extensions, and the max name length'''
     exts = {}
     maxlength = 0
-    exthelps = []
     for ename, ext in extensions():
         doc = (gettext(ext.__doc__) or _('(no help text available)'))
         ename = ename.split('.')[-1]