summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-13 10:03:55 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:49 +0000
commit23735bb765216b7a6086bc700d32d338f7649cc6 (patch)
tree4e33cffa3eb902a584fc87218e873625469e1e8a /bitbake/bin
parent098f63d6727e3b4db0a8906deee52c75f03047fb (diff)
downloadpoky-23735bb765216b7a6086bc700d32d338f7649cc6.tar.gz
Silence python 2.7 nested context manager warning
(Bitbake rev: 1c38f19fb8da2e6c55394162d0142e7146387e54) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 9b68c23a9b..6458d987c0 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -74,6 +74,7 @@ warnings.filterwarnings("default", module="(<string>$|(oe|bb)\.)")
74warnings.filterwarnings("ignore", category=PendingDeprecationWarning) 74warnings.filterwarnings("ignore", category=PendingDeprecationWarning)
75warnings.filterwarnings("ignore", category=ImportWarning) 75warnings.filterwarnings("ignore", category=ImportWarning)
76warnings.filterwarnings("ignore", category=DeprecationWarning, module="<string>$") 76warnings.filterwarnings("ignore", category=DeprecationWarning, module="<string>$")
77warnings.filterwarnings("ignore", message="With-statements now directly support multiple context managers")
77 78
78 79
79def main(): 80def main():