Skip to content

Commit e9bbf15

Browse files
committed
Fix unknown command
1 parent 6b58ecd commit e9bbf15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def create_reg_add(data):
123123
result += filetype + "\\shell\\pyWin-" + command["regname"]
124124
result += "\\command]\r\n"
125125
result += "@=\"cmd /c " + configLoc.replace("\\", "\\\\")
126-
result += "\\\\comStore\\\\" + str(command["id"]) + ".bat \"%1\"\"\r\n"
126+
result += "\\\\comStore\\\\" + str(command["id"]) + ".bat \\\"%1\\\"\"\r\n"
127127
if "icon_path" in command and command["icon_path"] is not None:
128128
create_icon(command["icon_path"], command["id"])
129129
result += "\"Icon\"=\"" + configLoc.replace("\\", "\\\\")

0 commit comments

Comments
 (0)