From 6ce70b7d34c3f41d4a9613663bd4f7b0393348f9 Mon Sep 17 00:00:00 2001 From: Martin Bruset Solberg Date: Sat, 6 Aug 2022 00:36:14 +0200 Subject: [PATCH] refactor: fixed typo (cherry picked from commit ba0fd27b9c51c34d6a2de4339e45d44edbd48518) --- dbus/jack_control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbus/jack_control b/dbus/jack_control index 59730c03..a18b6440 100755 --- a/dbus/jack_control +++ b/dbus/jack_control @@ -155,7 +155,7 @@ def parse_argv(argv): if control_iface.IsStarted(): return (0, "started") else: - return (1, "stoped") + return (1, "stopped") elif arg == 'start': print("--- start") control_iface.StartServer()