diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-07 13:55:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:04:18 +0100 |
commit | 754874e68d1037c76fc4cc7d35d3fa12946d00f8 (patch) | |
tree | 388b49f9cd24d1ed8574bca955e92a6532844056 /meta/lib | |
parent | dde7af5f6c769eae721b1ee18462b841c8ea3277 (diff) | |
download | openembedded-core-754874e68d1037c76fc4cc7d35d3fa12946d00f8.tar.gz openembedded-core-754874e68d1037c76fc4cc7d35d3fa12946d00f8.tar.bz2 openembedded-core-754874e68d1037c76fc4cc7d35d3fa12946d00f8.zip |
classes/lib: Update to use print as a function call
In python 3 print is a function call. In some cases bb.note is a more
appropriate call to make.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/path.py b/meta/lib/oe/path.py index d8eb80225f..da044ba8c8 100644 --- a/meta/lib/oe/path.py +++ b/meta/lib/oe/path.py @@ -55,7 +55,7 @@ def make_relative_symlink(path): depth += 1 if not ancestor: - print "make_relative_symlink() Error: unable to find the common ancestor of %s and its target" % path + print("make_relative_symlink() Error: unable to find the common ancestor of %s and its target" % path) return base = link.partition(ancestor)[2].strip('/') |