aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2005-05-20 21:51:03 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2005-05-20 21:51:03 +0000
commit8d02dd8b56152eef07c375a511b78a87bfadad89 (patch)
treec316036a1dbccd2af1478eafcd1203926cdca725 /lib/bb
parent33d7ebb1af8d5c9666946f2487fb7bef5c651656 (diff)
downloadbitbake-8d02dd8b56152eef07c375a511b78a87bfadad89.tar.gz
bitbake/lib/bb/fetch.py:
-be less anoying and only print debug messages when d is none
Diffstat (limited to 'lib/bb')
-rw-r--r--lib/bb/fetch.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bb/fetch.py b/lib/bb/fetch.py
index 5e8d3ca12..f773e97eb 100644
--- a/lib/bb/fetch.py
+++ b/lib/bb/fetch.py
@@ -75,9 +75,7 @@ methods = []
def init(urls = [], d = None):
if d == None:
- bb.error("BUG init called with None as data object!!!")
- import traceback
- traceback.print_stack()
+ bb.debug(2,"BUG init called with None as data object!!!")
return
for m in methods: