diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-07 13:55:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:06:50 +0100 |
commit | db8217f6b89be11a17e9f3cba7d98be64d8aded1 (patch) | |
tree | 8bd8c54c90035d3fbe4d7e9a85fe701b535d7a4a /meta/classes/update-rc.d.bbclass | |
parent | e0bd393be8e6419cd19dd860c75de75ea73c7509 (diff) | |
download | poky-db8217f6b89be11a17e9f3cba7d98be64d8aded1.tar.gz |
classes: Use modern exception raising syntax
Modern expection rasing syntax is function call format, convert to this
to keep python 3 happy and model correct coding style in the core.
(From OE-Core rev: f4b382754603d3f1caa13824bcc8d06b568bbc59)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/update-rc.d.bbclass')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index d8cc34234e..55885698ae 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass | |||
@@ -44,9 +44,9 @@ fi | |||
44 | def update_rc_after_parse(d): | 44 | def update_rc_after_parse(d): |
45 | if d.getVar('INITSCRIPT_PACKAGES') == None: | 45 | if d.getVar('INITSCRIPT_PACKAGES') == None: |
46 | if d.getVar('INITSCRIPT_NAME') == None: | 46 | if d.getVar('INITSCRIPT_NAME') == None: |
47 | raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % d.getVar('FILE') | 47 | raise bb.build.FuncFailed("%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % d.getVar('FILE')) |
48 | if d.getVar('INITSCRIPT_PARAMS') == None: | 48 | if d.getVar('INITSCRIPT_PARAMS') == None: |
49 | raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % d.getVar('FILE') | 49 | raise bb.build.FuncFailed("%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % d.getVar('FILE')) |
50 | 50 | ||
51 | python __anonymous() { | 51 | python __anonymous() { |
52 | update_rc_after_parse(d) | 52 | update_rc_after_parse(d) |