Skip to content

Commit ca287f6

Browse files
hauntsaninjajaraco
hauntsaninja
authored andcommitted
Fix requirement produced for git URL in extra
1 parent fef1016 commit ca287f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

importlib_metadata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ def parse_condition(section):
702702
if extra and markers:
703703
markers = f'({markers})'
704704
conditions = list(filter(None, [markers, make_condition(extra)]))
705-
return '; ' + ' and '.join(conditions) if conditions else ''
705+
return ' ; ' + ' and '.join(conditions) if conditions else ''
706706

707707
for section in sections:
708708
yield section.value + parse_condition(section.name)

0 commit comments

Comments
 (0)