Skip to content

Commit d4bb89b

Browse files
committed
Merge pull request #12 from whamtet/master
fixed arglist error
2 parents 6d912d8 + 43e2882 commit d4bb89b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gapi/core.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
"Return an argument list for the method"
198198
[method]
199199
(let [base_args
200-
(if (= (method :description) "POST") '[auth parameters body] '[auth parameters])]
200+
(if (= (method :description) "POST") '[[auth parameters body]] '[[auth parameters]])]
201201
base_args))
202202

203203
(defn- extract-methods

0 commit comments

Comments
 (0)