Bug correction in URL parameter (trailing /)

This commit is contained in:
Phyks 2014-01-22 01:45:20 +01:00
parent eef8221073
commit 73271e28b8
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ try:
elif option == "IGNORE_FILES":
params["IGNORE_FILES"] = [i.strip() for i in value.split(",")]
elif option == "BLOG_URL":
params["BLOG_URL"] = value.strip(" \n\t\r/")
params["BLOG_URL"] = value.strip(" \n\t\r").rstrip("/")
else:
params[option.strip()] = value.strip()