From ce6eef0d026fb485cbedefaf05bff984d641ad0b Mon Sep 17 00:00:00 2001 From: Ben Rousch Date: Fri, 11 Oct 2013 14:01:00 -0400 Subject: [PATCH] Fixed another 'Unknown' typo --- buildozer/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildozer/target.py b/buildozer/target.py index 1640a61..33f60aa 100644 --- a/buildozer/target.py +++ b/buildozer/target.py @@ -72,7 +72,7 @@ class Target(object): for item in result: command, args = item[0], item[1:] 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) func = getattr(self, 'cmd_{0}'.format(command))