From 6cccc021f8256c142882ab9734aa2600b3ffacad Mon Sep 17 00:00:00 2001 From: "Fabien C. Y. Benureau" Date: Sun, 6 Aug 2017 00:51:56 +0200 Subject: [PATCH] Minor fix for isbn2index docstring --- pubs/apis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubs/apis.py b/pubs/apis.py index 0a0e449..0812ba5 100644 --- a/pubs/apis.py +++ b/pubs/apis.py @@ -17,7 +17,7 @@ def doi2bibtex(doi): def isbn2bibtex(isbn): - """Return a bibtex string of metadata from a DOI""" + """Return a bibtex string of metadata from an ISBN""" url = 'http://www.ottobib.com/isbn/{}/bibtex'.format(isbn) r = requests.get(url)