We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4258ac2 commit ac0239cCopy full SHA for ac0239c
CHANGELOG.md
@@ -1,10 +1,8 @@
1
# Unreleased
2
3
-## Added
4
-
5
## Fixed
6
7
-## Changed
+- Add missing require for `clojure.pprint`
8
9
# 0.16.68 (2024-07-17 / 3c1b328)
10
src/lambdaisland/cli.clj
@@ -1,6 +1,8 @@
(ns lambdaisland.cli
- (:require [clojure.string :as str]
- [clojure.set :as set]))
+ (:require
+ [clojure.string :as str]
+ [clojure.set :as set]
+ [clojure.pprint :as pprint]))
;; I've tried to be somewhat consistent with variable naming
@@ -529,7 +531,7 @@
529
531
(binding [*out* *err*]
530
532
(println "[FATAL]" (.getMessage e))
533
(if-let [d (ex-data e)]
- (clojure.pprint/pprint d)))
534
+ (pprint/pprint d)))
535
(System/exit (:exit (ex-data e) 1)))))
536
537
0 commit comments