Skip to content

Commit 8701bab

Browse files
authored
Fix external command for % character. (#627)
1 parent 349ed67 commit 8701bab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manager/manager_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def pruned_spec_string(spec, variants_to_omit=["ipo", "dev_path=", "patches=", "
3737
full_spec = spec.format("{name}{@version}{variants}{%compiler}")
3838

3939
# add spaces between variants so we can filter
40-
spec_components = full_spec.replace("+", " +").replace("~", " ~").split(" ")
40+
spec_components = full_spec.replace("+", " +").replace("%", " %").replace("~", " ~").split(" ")
4141

4242
def filter_func(entry):
4343
for v in variants_to_omit:

0 commit comments

Comments
 (0)