fix typo in base agent

This commit is contained in:
Russell Haering 2013-12-25 21:00:19 -08:00
parent 15c63e8b46
commit 467eb22edd

@ -62,7 +62,7 @@ class BaseTeethAgent(object):
if command_name not in self.command_map:
raise errors.InvalidCommandError(command_name)
self.comand_map[command_name](**kwargs)
self.command_map[command_name](**kwargs)
def run(self):
"""Run the Teeth Agent."""