Skip to content

Commit

Permalink
Fixes issue #438
Browse files Browse the repository at this point in the history
Python range does not include stop position. In this case it is 9, but should be 10.
  • Loading branch information
tstoeter authored Dec 10, 2024
1 parent 7e296f2 commit e48ace2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omero/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit e48ace2

Please sign in to comment.