From 5a22babc6a179a6a91e0c7d346784660963bcd06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cem=20G=C3=B6kmen?= <1408354+cgokmen@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:48:10 -0800 Subject: [PATCH] Remove extra newline --- omnigibson/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/omnigibson/__init__.py b/omnigibson/__init__.py index 8f2e13b2c..6bac4774d 100644 --- a/omnigibson/__init__.py +++ b/omnigibson/__init__.py @@ -91,17 +91,17 @@ def create_app(): # Enable Native Livestream extension # Default App: Streaming Client from the Omniverse Launcher enable_extension("omni.kit.livestream.native") - print(f"Now streaming on {hostname} via Omniverse Streaming Client\n") + print(f"Now streaming on {hostname} via Omniverse Streaming Client") elif gm.REMOTE_STREAMING == "websocket": # Enable WebSocket Livestream extension # Default URL: http://localhost:8211/streaming/client/ enable_extension("omni.services.streamclient.websocket") - print(f"Now streaming on: http://{hostname}:8211/streaming/client\n") + print(f"Now streaming on: http://{hostname}:8211/streaming/client") elif gm.REMOTE_STREAMING == "webrtc": # Enable WebRTC Livestream extension # Default URL: http://localhost:8211/streaming/webrtc-client/ enable_extension("omni.services.streamclient.webrtc") - print(f"Now streaming on: http://{hostname}:8211/streaming/webrtc-client?server={hostname}\n") + print(f"Now streaming on: http://{hostname}:8211/streaming/webrtc-client?server={hostname}") else: raise ValueError(f"Invalid REMOTE_STREAMING option {gm.REMOTE_STREAMING}. Must be one of None, native, websocket, webrtc.")