elif is nicer than else if

This commit is contained in:
Emmet Hikory 2010-02-03 14:58:45 -08:00
parent bffe719703
commit 5a62f49527

View File

@ -314,7 +314,7 @@ def main():
if requested_arch:
if requested_arch in ('i386', 'amd64') and app.system_architecture == 'amd64':
app.build_architecture = requested_arch
else if requested_arch == 'armel' and app.system_architecture in ('i386', 'amd64'):
elif requested_arch == 'armel' and app.system_architecture in ('i386', 'amd64'):
app.build_architecture = requested_arch
args.append('--debootstrap=build-arm-chroot')
else: