From 74aa4f569e888f9c490b0d6e99536953ef9d19fc Mon Sep 17 00:00:00 2001 From: Naoto Kondo Date: Thu, 17 Mar 2022 20:40:36 +0900 Subject: [PATCH] minor fix --- example/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/routing.py b/example/routing.py index 3b7a2e0..3ad9c87 100644 --- a/example/routing.py +++ b/example/routing.py @@ -27,7 +27,7 @@ def main(): sources = ndi.find_get_current_sources(ndi_find) if len(sources) > 0: new_source = random.choice(sources) - print('routing to %s \n' % new_source.ndi_name) + print('routing to %s' % new_source.ndi_name) ndi.routing_change(ndi_routing, new_source) else: ndi.routing_clear(ndi_routing)