- commit
- 2c4fb4df458f4057b8aa9b1d1c92bb04c4104cbd
- parent
- a3fdef41176051ed25b34a6bb87e5bccb58a1c55
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-04-07 12:41
use restrictive mode in key store
Diffstat
| M | xikeyring/keyring.py | 1 | + |
1 files changed, 1 insertions, 0 deletions
diff --git a/xikeyring/keyring.py b/xikeyring/keyring.py
@@ -71,6 +71,7 @@ class Keyring: 71 71 def __init__(self, path: str): 72 72 self._crypt = None 73 73 self.db = sqlite3.connect(path) -1 74 os.chmod(path, 0o600) 74 75 self.prompt = Prompt() 75 76 76 77 with self.db: