From a417478aa01516d89937fcb3cbe53c5801a4c285 Mon Sep 17 00:00:00 2001 From: Cuan Date: Wed, 16 Feb 2022 13:46:42 -0500 Subject: [PATCH] Fixed critical typo preventing folder syncing from working --- bin/sshyp | 2 +- bin/sshypRemote.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/sshyp b/bin/sshyp index 1bb47fa..3bfb50e 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -160,7 +160,7 @@ def print_info(): # prints help text based on argument print('/ /') print('/ sshyp Copyright (C) 2021-2022 Randall Winkhart /') print('/ /') - print('/ Version 2022.02.16.fr4.5 /') + print('/ Version 2022.02.16.fr4.6 /') print('/ The High-Tech Shears Update /') print('/ /') print('////////////////////////////////////////////////////////\n') diff --git a/bin/sshypRemote.py b/bin/sshypRemote.py index 3997fa7..0a4b86f 100755 --- a/bin/sshypRemote.py +++ b/bin/sshypRemote.py @@ -38,7 +38,7 @@ def deletion_check(_client_device_name): def folder_check(): - open(expanduser('~/.config/sshyp/deletion_database'), 'w').write('') + open(expanduser('~/.config/sshyp/folder_database'), 'w').write('') for _file in listdir(expanduser('~/.password-pasture')): - if isdir(join('~/.config/sshyp/deletion_database/', _file)): + if isdir(join('~/.config/sshyp/folder_database/', _file)): open(expanduser('~/.config/sshyp/folder_database'), 'a').write(_file + '\n')