secretstore: fix decryption in sync

Change-Id: If5be7679e9e0b6e0acf78ffd871adb1f9af8d7f4
This commit is contained in:
q3k 2020-07-30 22:42:25 +02:00 committed by q3k
parent 96074a7859
commit 6c1a712522

View file

@ -217,7 +217,7 @@ class SyncActionDecrypt:
return f'Decrypting {os.path.split(self.src)[-1]} ({self.reason})'
def act(self):
return encrypt(self.src, self.dst)
return decrypt(self.src, self.dst)
def sync(path: str, dry: bool):