Skip to content

Commit

Permalink
fix from review
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Apr 20, 2017
1 parent e72b0b8 commit 4911b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Packages.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ def Initialize_BaseInit(show_popup, base_url, log_url)

# '\' is not reserved nor unreserved according to rfc https://tools.ietf.org/html/rfc3986#section-2.1
# but ruby URI does not handle it. So to make life easier encode it (bsc#1032506)
base_url.value.gsub!(/\\/, "%5C")
base_url.value.gsub!("\\", "%5C")

# hide password from URL if present
log_url.value = URL.HidePassword(base_url.value)
Expand Down

0 comments on commit 4911b08

Please sign in to comment.