diff --git a/voting/cli/voting.py b/voting/cli/voting.py index bf9dad4..5416a0d 100644 --- a/voting/cli/voting.py +++ b/voting/cli/voting.py @@ -61,7 +61,7 @@ def ls(verbose: bool = typer.Option(False, "--verbose", "-v", help="Verbose outp with Storage() as store: for v in store.votings: if only_active: - if Result(v).outcome != 'AUSSTEHEND': + if Result(v).outcome == 'AUSSTEHEND': continue if verbose: res = Result(v).result()