From 4b24df0e97b983b76d7730e906de6bdd1cb1d086 Mon Sep 17 00:00:00 2001 From: Cuan Date: Wed, 16 Feb 2022 00:45:26 -0500 Subject: [PATCH] Deletion flags no longer end in 'del' --- bin/sshyp-shear.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sshyp-shear.py b/bin/sshyp-shear.py index 2730cf7..4b69edb 100755 --- a/bin/sshyp-shear.py +++ b/bin/sshyp-shear.py @@ -21,7 +21,7 @@ def delete(_file_path): except FileNotFoundError: print('\nFile does not exist remotely.\n') for _device_name in listdir(expanduser('~/.config/sshyp/devices')): - open(f"{expanduser('~/.config/sshyp/deleted/')}{_file_path.replace('/', '@')}^&*{_device_name}^&*del", 'w') + open(f"{expanduser('~/.config/sshyp/deleted/')}{_file_path.replace('/', '@')}^&*{_device_name}", 'w') def check(_client_device_name):