From fc50bdd3a0354cf332ad846f0a336a9bbfd4a769 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Fri, 30 Jun 2023 09:32:10 +0200 Subject: [PATCH] Fix openbot build --- src/ifcopenshell-python/ifcopenshell/stream.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/stream.py b/src/ifcopenshell-python/ifcopenshell/stream.py index df6ba552f5..df05f934b9 100644 --- a/src/ifcopenshell-python/ifcopenshell/stream.py +++ b/src/ifcopenshell-python/ifcopenshell/stream.py @@ -378,4 +378,5 @@ try: return "todo" except ImportError as e: - print(f"No stream support: {e}") + import sys + print(f"No stream support: {e}", file=sys.stderr)