This commit is contained in:
Joey Hess 2013-05-12 15:43:59 -05:00
parent 94c9c983e6
commit 2f3ce4c02f

View file

@ -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. -}