From 50526acfb2251d1076c3486dceecae08f44d8a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Wed, 21 May 2025 21:03:36 +0200 Subject: Fix missing space in "not found in revision" error message --- src/Repo.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Repo.hs b/src/Repo.hs index ce5d9ef..700c61b 100644 --- a/src/Repo.hs +++ b/src/Repo.hs @@ -288,7 +288,7 @@ getSubtree mbCommit path tree = liftIO $ do , treeSubdir = treeSubdir tree path } _ -> do - fail $ "subtree `" <> path <> "' not found" <> maybe "" (("in revision `" <>) . (<> "'") . showCommitId . commitId) mbCommit + fail $ "subtree ‘" <> path <> "’ not found" <> maybe "" ((" in revision ‘" <>) . (<> "’") . showCommitId . commitId) mbCommit checkoutAt :: (MonadIO m, MonadFail m) => Tree -> FilePath -> m () -- cgit v1.2.3