Skip to content

Commit

Permalink
fixup! Handle URL params for AptRepoFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
quba42 committed Oct 16, 2024
1 parent 6581fd8 commit c06c4b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subscription_manager/repofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@ def fix_content(self, content):

query = parse_qs(parsed_url.query)
if "rel" in query and "comp" in query:
suites = query["rel"][0].replace(",", " ")
components = query["comp"][0].replace(",", " ")
suites = " ".join(query["rel"][0].split(","))
components = " ".join(query["comp"][0].split(","))
else:
suites = "default"
components = "all"
Expand Down

0 comments on commit c06c4b5

Please sign in to comment.