Fix CLI modify error on mac

This commit is contained in:
thePR0M3TH3AN
2025-07-19 13:53:02 -04:00
parent 04862bce48
commit 64c174c385

View File

@@ -3,6 +3,7 @@ from typing import Optional, List
import json
import typer
import sys
from seedpass.core.manager import PasswordManager
from seedpass.core.entry_types import EntryType
@@ -368,6 +369,7 @@ def entry_modify(
)
except ValueError as e:
typer.echo(str(e))
sys.stdout.flush()
raise typer.Exit(code=1)