We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ccfacd commit 457c873Copy full SHA for 457c873
1 file changed
ModFiles/Hashing.py
@@ -77,7 +77,7 @@ def hash_file_install_orders(indices):
77
hasher.update(str(rulebook).encode())
78
hashhex = hasher.hexdigest()
79
for filepath, _ in install_order:
80
- filepath_for_hash = os.path.join(*splitpath(filepath)[-2:])
+ filepath_for_hash = os.path.join(*splitpath(filepath)[3:])
81
result[filepath_for_hash] = hashhex
82
83
return result
0 commit comments