diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-19 09:39:21 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:53:49 -0700 |
commit | 16d2cc32574aecceff630adab0d9a36d4fa5e568 (patch) | |
tree | 5738d6c984686245006f51669d4faa79dcaf3c9f /classes/python-dir.bbclass | |
parent | dc079bbb46546c20ecd9e35eb8e849c39cd068af (diff) |
python-dir: raise an Exception instance, not a string
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes/python-dir.bbclass')
-rw-r--r-- | classes/python-dir.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/python-dir.bbclass b/classes/python-dir.bbclass index d631a5c3ff..7b0b80973a 100644 --- a/classes/python-dir.bbclass +++ b/classes/python-dir.bbclass @@ -4,7 +4,7 @@ def python_dir(d): for majmin in "2.6 2.5 2.4 2.3".split(): if os.path.exists( "%s/python%s" % ( staging_incdir, majmin ) ): return "python%s" % majmin if not "python-native" in bb.data.getVar( "DEPENDS", d, 1 ).split(): - raise "No Python in STAGING_INCDIR. Forgot to build python-native ?" + raise Exception("No Python in STAGING_INCDIR. Forgot to build python-native?") return "INVALID" PYTHON_DIR = "${@python_dir(d)}" |