Explorar o código

Wrong concatenation operators, fixed!

Sam Flint %!s(int64=12) %!d(string=hai) anos
pai
achega
42e75b463e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      isbn2BibTeX.org

+ 1 - 1
isbn2BibTeX.org

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