diff --git a/CHANGELOG.md b/CHANGELOG.md index 44be7ff454..3f5073e7d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Copy and pasting the git commit messages is __NOT__ enough. ### Changed ### Deprecated ### Fixed +- Fixed a regression where `pybullet` build time messages returned. ### Removed ### Security diff --git a/smarts/core/utils/pybullet.py b/smarts/core/utils/pybullet.py index f0caa4560f..51bafbc35c 100644 --- a/smarts/core/utils/pybullet.py +++ b/smarts/core/utils/pybullet.py @@ -25,7 +25,7 @@ # XXX: Importing pybullet logs an annoying build version tag. There's no "friendly" # way to fix this since they simply use print(...). Disabling logging at the # time of import is our hack. -with suppress_output(stderr=False): +with suppress_output(): from pybullet import * from pybullet_utils import bullet_client