From: Humberto Ibarra Date: Thu, 9 Jun 2016 16:01:40 +0000 (-0500) Subject: scripts/yocto-bsp: Fixed typo in parameter that was causing exception X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aae5c2c39f64be87152b2e5470b50681c0f54670;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/yocto-bsp: Fixed typo in parameter that was causing exception There is a typo in the logging parameters, "filname" is being used instead of "filename". This didn't cause issues before since python 2 didn't validate unused parameters but with python >= 3.4.3 an exception is thrown. This patch fixes this parameter name. [Yocto #9736] Signed-off-by: Humberto Ibarra Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/scripts/yocto-bsp b/scripts/yocto-bsp index 6a422c38910..0d363705191 100755 --- a/scripts/yocto-bsp +++ b/scripts/yocto-bsp @@ -118,7 +118,7 @@ subcommands = { def start_logging(loglevel): - logging.basicConfig(filname = 'yocto-bsp.log', filemode = 'w', level=loglevel) + logging.basicConfig(filename = 'yocto-bsp.log', filemode = 'w', level=loglevel) def main():