Skip to content

Commit 7c25b80

Browse files
Small fixes and v1.9.0 release
1 parent e438e97 commit 7c25b80

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

Encryptext.pyw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def getTrueFilename(filename):
3434
base = abspath(".")
3535
return join(base, filename)
3636

37-
debug = True
37+
debug = False
3838

3939
# ENCRYPTION KEY HERE
4040
encrypt_key = b''# ENCRYPTION KEY HERE
21.3 MB
Binary file not shown.

installer_creator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from os import rename, path, remove
44
from shutil import rmtree
55
import hashlib
6-
76
import PyInstaller.__main__
87

98
version = "1.9.0"
@@ -61,7 +60,9 @@ def computeHash(input_string):
6160
file.truncate()
6261

6362
# Move the exe out of the dist folder
64-
remove(f"encryptext_installer_v{version}_64bit.exe")
63+
try:
64+
remove(f"encryptext_installer_v{version}_64bit.exe")
65+
except FileNotFoundError: pass
6566
rename(path.join("dist", "encryptext_installer.exe"), f"encryptext_installer_v{version}_64bit.exe")
6667

6768
# Remove pyinstaller folders and files

0 commit comments

Comments
 (0)