Merge pull request #48 from brousch/patch-3

Fixed another 'Unknown' typo
This commit is contained in:
qua-non 2013-10-11 11:59:28 -07:00
commit 220206ebab

View file

@ -72,7 +72,7 @@ class Target(object):
for item in result: for item in result:
command, args = item[0], item[1:] command, args = item[0], item[1:]
if not hasattr(self, 'cmd_{0}'.format(command)): if not hasattr(self, 'cmd_{0}'.format(command)):
self.buildozer.error('Unknow command {0}'.format(command)) self.buildozer.error('Unknown command {0}'.format(command))
exit(1) exit(1)
func = getattr(self, 'cmd_{0}'.format(command)) func = getattr(self, 'cmd_{0}'.format(command))