diff options
| -rw-r--r-- | bitbake/lib/bb/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index f2f8f656d8..aa0c6de311 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py | |||
| @@ -98,7 +98,7 @@ class MalformedUrl(Exception): | |||
| 98 | ####################################################################### | 98 | ####################################################################### |
| 99 | 99 | ||
| 100 | def plain(*args): | 100 | def plain(*args): |
| 101 | bb.msg.warn(''.join(args)) | 101 | bb.msg.plain(''.join(args)) |
| 102 | 102 | ||
| 103 | def debug(lvl, *args): | 103 | def debug(lvl, *args): |
| 104 | bb.msg.debug(lvl, None, ''.join(args)) | 104 | bb.msg.debug(lvl, None, ''.join(args)) |
| @@ -107,7 +107,7 @@ def note(*args): | |||
| 107 | bb.msg.note(1, None, ''.join(args)) | 107 | bb.msg.note(1, None, ''.join(args)) |
| 108 | 108 | ||
| 109 | def warn(*args): | 109 | def warn(*args): |
| 110 | bb.msg.warn(1, None, ''.join(args)) | 110 | bb.msg.warn(None, ''.join(args)) |
| 111 | 111 | ||
| 112 | def error(*args): | 112 | def error(*args): |
| 113 | bb.msg.error(None, ''.join(args)) | 113 | bb.msg.error(None, ''.join(args)) |
