summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/__main__.py b/__main__.py
index bd116bf..005319f 100755
--- a/__main__.py
+++ b/__main__.py
@@ -16,7 +16,7 @@ from tkinter.messagebox import showinfo, showerror, askyesno
from functools import partial
OBFS = uuid.getnode() % 256 # Get a number which *usually* doesn't change
-OBFS = 185 # <- For debugging (FIXME ^ above didn't held up in practice)
+OBFS = (len(os.getcwd()) + 131) % 256 # <- FIXME above didn't held up in practice
# TODO: Maybe we can do len() for the absolute path to this script
# Then % 256 it so we always have a valid unchanging obfuscation? >_>
# TODO: Make a .ico for this, and pyinstaller -i? (--onefile)