[oe-commits] [openembedded-core] branch master-next updated: oeqa/recipetool: Fix syntax error

git at git.openembedded.org git at git.openembedded.org
Sun Mar 13 09:28:55 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

The following commit(s) were added to refs/heads/master-next by this push:
       new  61a4cc7   oeqa/recipetool: Fix syntax error
61a4cc7 is described below

commit 61a4cc721d6fb286bbcf9e91e8cf72a34b7f66c4
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Mar 13 09:28:00 2016 +0000

    oeqa/recipetool: Fix syntax error
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/recipetool.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py
index 5075703..5b54ba6 100644
--- a/meta/lib/oeqa/selftest/recipetool.py
+++ b/meta/lib/oeqa/selftest/recipetool.py
@@ -411,7 +411,7 @@ class RecipetoolTests(RecipetoolBase):
         result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe))
         dirlist = os.listdir(temprecipe)
         if len(dirlist) < 1 or not os.path.isfile(os.path.join(temprecipe, dirlist[0])):
-            self.fail('recipetool did not create recipe file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist))
+            self.fail('recipetool did not create recipe file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist)))
         self.assertEqual(dirlist[0], 'socat_%s.bb' % pv, 'Recipe file incorrectly named')
         checkvars = {}
         checkvars['LICENSE'] = set(['Unknown', 'GPLv2'])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list