Fixed spelling of 'Unknown'
This commit is contained in:
parent
105e0eeaf2
commit
ada7735d2c
1 changed files with 2 additions and 2 deletions
|
@ -802,7 +802,7 @@ class Buildozer(object):
|
||||||
# maybe it's a target?
|
# maybe it's a target?
|
||||||
targets = [x[0] for x in self.targets()]
|
targets = [x[0] for x in self.targets()]
|
||||||
if command not in targets:
|
if command not in targets:
|
||||||
print 'Unknow command/target', command
|
print 'Unknown command/target', command
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
self.set_target(command)
|
self.set_target(command)
|
||||||
|
@ -940,7 +940,7 @@ class BuildozerRemote(Buildozer):
|
||||||
remote_name = args[0]
|
remote_name = args[0]
|
||||||
remote_section = 'remote:{}'.format(remote_name)
|
remote_section = 'remote:{}'.format(remote_name)
|
||||||
if not self.config.has_section(remote_section):
|
if not self.config.has_section(remote_section):
|
||||||
self.error('Unknow remote "{}", must be configured first.'.format(
|
self.error('Unknown remote "{}", must be configured first.'.format(
|
||||||
remote_name))
|
remote_name))
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue