diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:48:16 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-06 23:48:16 +0200 |
commit | 1bee94ff83340719d03ec1446b72c4e2475c796f (patch) | |
tree | 8eaa3f2c0ca64d5841408971c8ec6397642ecbbf /fnl/util.fnl | |
parent | e1c5a423a6e8abec507d89863903be869762a55e (diff) |
fix(util): update error
Diffstat (limited to 'fnl/util.fnl')
-rw-r--r-- | fnl/util.fnl | 3 |
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))))) |