Skip to content

Commit

Permalink
consolodate_urls: fix attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
dale-wahl committed Sep 12, 2023
1 parent e51a868 commit aa5931f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processors/conversion/consolidate_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def remove_url_components(parsed_url, remove_scheme=False, remove_domain=False,
if remove_scheme:
parsed_url = parsed_url._replace(scheme="")
if remove_domain:
parsed_url = parsed_url._replace(domain="")
parsed_url = parsed_url._replace(netloc="")
if remove_path:
parsed_url = parsed_url._replace(path="")
if remove_query:
Expand Down

0 comments on commit aa5931f

Please sign in to comment.