Commit 620c0bae authored by emmapeel's avatar emmapeel 🤖
Browse files

add another special char to the list

parent 9f157c79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ def make_string_link(source_string,pofile):
        lang_code = 'sv_SE'
    source_string_modified = source_string
    #we need to replace some chars that are not allowed on the url
    replaced_chars = " '[]()`<>\":/&*={}-"
    replaced_chars = " '[]()`<>\":/&*={}- %"
    for onechar in replaced_chars:
        source_string_modified = source_string_modified.replace(onechar, "+")
    source_string_modified = source_string_modified.replace('#', "%23")