Skip to content

Commit

Permalink
upgrade to pykeepass 4.0.7
Browse files Browse the repository at this point in the history
set timezone explicitly
  • Loading branch information
cizmazia committed Mar 5, 2024
1 parent b7f0ec9 commit c213dd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ venv/
**/__pycache__
.coverage
htmlcov/
.direnv/
.envrc
4 changes: 2 additions & 2 deletions kdbx_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from cmd import Cmd
from collections import Counter
from os import path, listdir, urandom, stat
from datetime import datetime
from datetime import datetime, timezone
import subprocess
from threading import Timer
from copy import deepcopy
Expand Down Expand Up @@ -600,7 +600,7 @@ def update(entry, f):
return
entry.save_history()
f(entry)
entry.mtime = datetime.now()
entry.mtime = datetime.now(timezone.utc)


def dedup(kp, title):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pykeepass==4.0.6
pykeepass==4.0.7
pyotp==2.9.0

0 comments on commit c213dd7

Please sign in to comment.