Browse Source

Wrong concatenation operators, fixed!

Sam Flint 10 years ago
parent
commit
42e75b463e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      isbn2BibTeX.org

+ 1 - 1
isbn2BibTeX.org

@@ -101,7 +101,7 @@ First, we need to construct the query URL.
 #+begin_src python
 #+begin_src python
   qstring = ""
   qstring = ""
   for arg in sys.argv:
   for arg in sys.argv:
-      qstring = qstring . " " . arg
+      qstring = qstring + " " + arg
   
   
   query = urllib.quote_plus(qstring)
   query = urllib.quote_plus(qstring)
   queryURL = jsonreq + query
   queryURL = jsonreq + query