From 45d44f258ba18cb9a27982c545651f6dbb909b53 Mon Sep 17 00:00:00 2001 From: Antoine Busque Date: Tue, 26 Apr 2016 19:42:11 -0400 Subject: [PATCH] Remove unused parameter from _error Signed-off-by: Antoine Busque --- lttnganalyses/cli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lttnganalyses/cli/command.py b/lttnganalyses/cli/command.py index cf256cf..0316383 100644 --- a/lttnganalyses/cli/command.py +++ b/lttnganalyses/cli/command.py @@ -95,7 +95,7 @@ class Command: print(msg, file=sys.stderr) - def _error(self, msg, code, exit_code=1): + def _error(self, msg, exit_code=1): if self._mi_mode: self._mi_error(msg) else: -- 2.34.1