Skip to content

Commit

Permalink
Merge pull request #97 from Heliosmaster/patch-1
Browse files Browse the repository at this point in the history
Remove redundant guard
  • Loading branch information
kauppilainen authored Aug 5, 2024
2 parents 0873b19 + 647456f commit b7acf35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aero/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
(read-pr-into-tagged-literal pr)
(catch Exception e
(let [line (.getLineNumber pr)]
(throw (ex-info (#?(:clj format :cljs gstring/format) "Config error on line %s" line) {:line line} e))))))
(throw (ex-info (format "Config error on line %s" line) {:line line} e))))))
:cljs
(read-pr-into-tagged-literal
(cond
Expand Down

0 comments on commit b7acf35

Please sign in to comment.