remove extra periods from filenames
This commit is contained in:
parent
a8abdb2322
commit
5fbeedd76b
@ -113,6 +113,12 @@ def download(phenny, input, verbose=True):
|
|||||||
file_handler.close()
|
file_handler.close()
|
||||||
|
|
||||||
filename = requests.utils.quote(title)
|
filename = requests.utils.quote(title)
|
||||||
|
|
||||||
|
# Remove an ending period, which sometimes happens when the
|
||||||
|
# title of the paper has a period at the end.
|
||||||
|
if filename[-1] == ".":
|
||||||
|
filename = filename[:-1]
|
||||||
|
|
||||||
url = "http://diyhpl.us/~bryan/papers2/paperbot/" + filename + ".pdf"
|
url = "http://diyhpl.us/~bryan/papers2/paperbot/" + filename + ".pdf"
|
||||||
|
|
||||||
phenny.say(url)
|
phenny.say(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user