Fix typo in check_arch function (#1195)

Added a missing space to separate words in the log message
This commit is contained in:
Daniele Debernardi 2018-02-01 22:02:04 +01:00 committed by Oliver Smith
parent 77701ac484
commit c925791387
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ def check_arch(args, apkbuild, arch):
logging.info("NOTE: You can edit the 'arch=' line inside the APKBUILD") logging.info("NOTE: You can edit the 'arch=' line inside the APKBUILD")
if args.action == "build": if args.action == "build":
logging.info("NOTE: Alternatively, use --arch to build for another" logging.info("NOTE: Alternatively, use --arch to build for another"
"architecture ('pmbootstrap build --arch=armhf " + " architecture ('pmbootstrap build --arch=armhf " +
pkgname + "')") pkgname + "')")
raise RuntimeError("Can't build '" + pkgname + "' for architecture " + raise RuntimeError("Can't build '" + pkgname + "' for architecture " +
arch) arch)