From e48ace24807c3b0fb4f2feb99d6b76deacab1feb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20St=C3=B6ter?= Date: Tue, 10 Dec 2024 10:39:20 +0100 Subject: [PATCH] Fixes issue #438 Python range does not include stop position. In this case it is 9, but should be 10. --- src/omero/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/omero/cli.py b/src/omero/cli.py index b0d845a8b..c80b22661 100755 --- a/src/omero/cli.py +++ b/src/omero/cli.py @@ -1357,7 +1357,7 @@ def execute(self, line, previous_args): self.isdebug = 0 debug_opts.remove("0") - for x in range(1, 9): + for x in range(1, 10): if str(x) in debug_opts: self.isdebug = x debug_opts.remove(str(x))