Various visual consistency updates

This commit is contained in:
2022-05-30 16:48:18 -04:00
parent 05df3dd903
commit e1930f9457
3 changed files with 47 additions and 48 deletions
+2 -2
View File
@@ -14,12 +14,12 @@ def delete(_file_path):
try:
rmtree(f"{expanduser('~/.password-pasture/')}{_file_path}")
except FileNotFoundError:
print('Folder does not exist remotely.')
print('folder does not exist remotely')
else:
try:
remove(f"{expanduser('~/.password-pasture/')}{_file_path}.gpg")
except FileNotFoundError:
print('File does not exist remotely.')
print('file does not exist remotely')
for _device_name in listdir(expanduser('~/.config/sshyp/devices')):
open(f"{expanduser('~/.config/sshyp/deleted/')}{_file_path.replace('/', '@')}^&*{_device_name}", 'w')