fixed typo in comments

This commit is contained in:
Brian Coca 2014-10-30 13:50:34 -04:00
parent 0fb0548d0b
commit 94a732fb1a

View file

@ -189,7 +189,7 @@ def get_module_list_text(module_list):
if len(desc) > linelimit:
desc = desc[:linelimit] + '...'
if module.startswith('_'): # Handle replecated
if module.startswith('_'): # Handle deprecated
module = module[1:]
deprecated.append("%-*s %-*.*s" % (displace, module, linelimit, len(desc), desc))
else: