We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59702a6 commit 03c70a0Copy full SHA for 03c70a0
CHANGELOG.md
@@ -31,6 +31,7 @@
31
- Unnecessary code has been removed from the following modules:
32
- Edit VM dialog
33
- Pathfinder
34
+- I try to fix the Pathfinder on compiled binaries on Linux. (30th June, 2024 at 12:45 PM)
35
36
## Known issues
37
services/pathfinder.py
@@ -2,7 +2,14 @@
2
3
def retrieveExecFolder():
4
print(__file__)
5
- exec_dir = re.sub("services/pathfinder.py$", "", __file__)
+ exec_dir = ""
6
+
7
+ if __file__.endswith(".py"):
8
+ exec_dir = re.sub("services/pathfinder.py$", "", __file__)
9
10
+ elif __file__.endswith(".pyc"):
11
+ exec_dir = re.sub("services/pathfinder.pyc$", "", __file__)
12
13
return exec_dir
14
15
#retrieveExecFolder()
0 commit comments