From c1edb0cea828b31f30296d28382af519a906d654 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Fri, 19 Aug 2022 19:34:37 -0500 Subject: [fix] lazybones request url query format string --- lazybones-client.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lazybones-client.lisp b/lazybones-client.lisp index 0d58490..655ebc7 100644 --- a/lazybones-client.lisp +++ b/lazybones-client.lisp @@ -87,9 +87,10 @@ for making requests to endpoint EP." for first = t then nil for varname in (endpoint-defun-query-var-names ep) do + (princ "~@[") (unless first (princ #\&)) (princ (string-upcase varname)) - (princ "=~a")))) + (princ "=~a~]")))) (defun endpoint-defun-dexador-request-uri (app ep) "Returns a string representation of code that generates a URI for -- cgit v1.2.3