summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Repo.hs2
1 files changed, 1 insertions, 1 deletions
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 ()