From 8041c4cae3f0fa6446451b8e133af9e680d2c1a5 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 4 Mar 2014 12:14:10 -0500 Subject: [PATCH] pprint isn't really a 'core' function i guess, so we should have a :use tests failed to run, complaining about pprint being undefined until this was added anyway --- src/clj_jtwig/functions.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/clj_jtwig/functions.clj b/src/clj_jtwig/functions.clj index 9ae4923..67454bd 100644 --- a/src/clj_jtwig/functions.clj +++ b/src/clj_jtwig/functions.clj @@ -4,7 +4,8 @@ (:import (com.lyncode.jtwig.functions JtwigFunction) (com.lyncode.jtwig.functions.repository DefaultFunctionRepository) (com.lyncode.jtwig.functions.exceptions FunctionNotFoundException FunctionException)) - (:require [clj-jtwig.convert :refer [java->clojure clojure->java]])) + (:require [clj-jtwig.convert :refer [java->clojure clojure->java]]) + (:use [clojure.pprint])) (defn- create-function-repository [] (new DefaultFunctionRepository (make-array JtwigFunction 0)))