Missing replace assigment (the change was not included into the commit by mistake)
This commit is contained in:
@@ -62,7 +62,7 @@ def extract_amazon_url_with_referer(text: str):
|
|||||||
product_code = product_code_regex_result.group(0)
|
product_code = product_code_regex_result.group(0)
|
||||||
if vendor_and_smid_result:
|
if vendor_and_smid_result:
|
||||||
extra_params = (''.join(str(w) for w in vendor_and_smid_result if w is not None))
|
extra_params = (''.join(str(w) for w in vendor_and_smid_result if w is not None))
|
||||||
extra_params.replace('?','&')
|
extra_params = extra_params.replace('?','&')
|
||||||
|
|
||||||
return helpers.new_refer_url(product_code, extra_params)
|
return helpers.new_refer_url(product_code, extra_params)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user