Make Python3 compatible.

This commit is contained in:
Markus Birth 2021-08-16 18:18:10 +02:00
parent c759655528
commit ea660f23d0
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
2 changed files with 3 additions and 3 deletions

4
convert.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os
import datetime
@ -6,7 +6,7 @@ import shutil
import json
from pykeepass import PyKeePass
from urlparse import urlparse
from urllib.parse import urlparse
shutil.copyfile("in.kdbx", "out.kdbx")

2
dump.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
from pykeepass import PyKeePass