one more hlint
This commit is contained in:
parent
9f6b7935dd
commit
6dc23b889e
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ getJournalFilesRaw = do
|
|||
g <- Annex.gitRepo
|
||||
fs <- liftIO $ catch (getDirectoryContents $ gitAnnexJournalDir g)
|
||||
(const $ return [])
|
||||
return $ filter (\f -> f /= "." && f /= "..") fs
|
||||
return $ filter (`notElem` [".", ".."]) fs
|
||||
|
||||
{- Stages all journal files into the index, and returns True if the index
|
||||
- was modified. -}
|
||||
|
|
Loading…
Reference in a new issue