Skip to content

Commit

Permalink
this is already a list
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Dec 18, 2023
1 parent 1ed708d commit 9daa6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion constructor/winexe.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def uninstall_menus_commands(info):
DetailPrint "Deleting menus from {name}..."
nsExec::ExecToLog '"$INSTDIR\_conda.exe" constructor --prefix "{path}" --rm-menus'
"""
lines = [tmpl.format(name="base", path="$INSTDIR").splitlines()]
lines = tmpl.format(name="base", path="$INSTDIR").splitlines()
for env_name in info.get("_extra_envs_info", {}):
path = join("$INSTDIR", "envs", env_name)
lines += tmpl.format(name=env_name, path=path).splitlines()
Expand Down

0 comments on commit 9daa6c7

Please sign in to comment.