From 8d9e793998a3b22f81ac3e39cd80671ff3fde1f1 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sat, 14 May 2022 14:43:43 +0300 Subject: [PATCH] apps/osmocom_siggen: fix missing parentheses in call to print --- apps/osmocom_siggen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/osmocom_siggen b/apps/osmocom_siggen index 1727f44..b2f9411 100755 --- a/apps/osmocom_siggen +++ b/apps/osmocom_siggen @@ -483,7 +483,7 @@ def main(): app.MainLoop() except RuntimeError, e: - print e + print(e) sys.exit(1) # Make sure to create the top block (tb) within a function: That code