Small Fix

This commit is contained in:
bipinkrish
2023-02-23 21:48:08 +05:30
parent fce6b68473
commit b2759bc182
3 changed files with 11 additions and 4 deletions

View File

@@ -32,5 +32,10 @@ else:
print("Not in supported file formats")
print()
exit(1)
from os import remove, rename
remove(enrcyptedFile)
rename(decryptedFile,enrcyptedFile)
decryptedFile = enrcyptedFile
print(decryptedFile)
print()