From 8106547c8d716ce3a98c33afeea463584feaa7d6 Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 5 Jul 2018 11:17:13 -0400 Subject: [PATCH] fix potential clojure compiler error if i had a nickel for every time this exact one with clojure.pprint has tripped me up over the years ... --- src/clj_htmltopdf/options.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/clj_htmltopdf/options.clj b/src/clj_htmltopdf/options.clj index eab6f4d..e061a41 100644 --- a/src/clj_htmltopdf/options.clj +++ b/src/clj_htmltopdf/options.clj @@ -1,6 +1,7 @@ (ns clj-htmltopdf.options (:require [clojure.java.io :as io] + [clojure.pprint :as pprint] [clojure.string :as string] [clj-htmltopdf.css :as css] [clj-htmltopdf.utils :as utils]) @@ -85,7 +86,7 @@ [options] (let [final-options (merge default-options options)] (if (get-in final-options [:debug :display-options?]) - (clojure.pprint/pprint final-options)) + (pprint/pprint final-options)) final-options)) (defn ->base-uri