From df28990173c2012d8b3212d8dde4ce0b0e02e24e Mon Sep 17 00:00:00 2001 From: Marko Topolnik Date: Wed, 27 Mar 2013 16:51:56 +0100 Subject: [PATCH] Fix missing args in connect-string --- src/leiningen/repl.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/leiningen/repl.clj b/src/leiningen/repl.clj index cb76a363..ecbc72ff 100644 --- a/src/leiningen/repl.clj +++ b/src/leiningen/repl.clj @@ -33,7 +33,7 @@ (as-> (str (first opts)) x (s/split x #":") (remove s/blank? x) - (-> (drop-last (count x) [(repl-host) (repl-port)]) + (-> (drop-last (count x) [(repl-host project) (repl-port project)]) (concat x)) (s/join ":" x)))