Backout 2b3846b0c06c for bad bug number in commit message

This commit is contained in:
Gregory Szorc 2013-09-09 12:43:45 -07:00
Родитель 483d49a42c
Коммит f36f4ff254
1 изменённых файлов: 1 добавлений и 23 удалений

Просмотреть файл

@ -38,28 +38,6 @@ class MachRegistrar(object):
self.categories[name] = (title, description, priority)
self.commands_by_category[name] = set()
def dispatch(self, name, context=None, **args):
"""Dispatch/run a command.
Commands can use this to call other commands.
"""
# TODO The logic in this function overlaps with code in
# mach.main.Main._run() and should be consolidated.
handler = self.command_handlers[name]
cls = handler.cls
if handler.pass_context and not context:
raise Exception('mach command class requires context.')
if handler.pass_context:
instance = cls(context)
else:
instance = cls()
fn = getattr(instance, handler.method)
return fn(**args) or 0
Registrar = MachRegistrar()