We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ba826 commit 648c032Copy full SHA for 648c032
src/pw_client.py
@@ -64,7 +64,7 @@ def create_backup(self):
64
"""Create a backup of the dictionary with the passwords."""
65
now = datetime.datetime.now().isoformat()
66
pretty_now = now.split('.')[0].replace(':', '.')
67
- with open(f'{self.creds_dir}/backups/{pretty_now}', 'w') as pw_file_json:
+ with open(f'{self.creds_dir}/.backups/{pretty_now}', 'w') as pw_file_json:
68
json.dump(self.pw_dict, pw_file_json)
69
70
@staticmethod
0 commit comments