From 2f3ce4c02fe0689b57574aeef28addb6a1a411c1 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 12 May 2013 15:43:59 -0500 Subject: [PATCH] fix --- Annex/Journal.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Annex/Journal.hs b/Annex/Journal.hs index 9f4d295996..e68591ce2c 100755 --- a/Annex/Journal.hs +++ b/Annex/Journal.hs @@ -68,8 +68,8 @@ journalFile file repo = gitAnnexJournalDir repo concatMap mangle file where mangle c | c == pathSeparator = "_" - | c == '_' = '__' - | otherwise = c + | c == '_' = "__" + | otherwise = [c] {- Converts a journal file (relative to the journal dir) back to the - filename on the branch. -}