summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-06 23:48:16 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-06 23:48:16 +0200
commit1bee94ff83340719d03ec1446b72c4e2475c796f (patch)
tree8eaa3f2c0ca64d5841408971c8ec6397642ecbbf /fnl
parente1c5a423a6e8abec507d89863903be869762a55e (diff)
fix(util): update error
Diffstat (limited to 'fnl')
-rw-r--r--fnl/util.fnl3
1 files changed, 1 insertions, 2 deletions
diff --git a/fnl/util.fnl b/fnl/util.fnl
index eb706cc..29db949 100644
--- a/fnl/util.fnl
+++ b/fnl/util.fnl
@@ -5,5 +5,4 @@
(let [(ok? val-or-err) (pcall require name)]
(if ok?
(val-or-err)
- (print "Could not load config: " val-or-err))))
-
+ (print (.. "Could not load config: " val-or-err)))))