missing \n in -q mode

This commit is contained in:
Joey Hess 2010-11-28 17:32:06 -04:00
parent 949e4abc56
commit 7e82d420d8
2 changed files with 2 additions and 2 deletions

View file

@ -53,4 +53,4 @@ showErr e = warning $ show e
warning :: String -> Annex ()
warning s = do
verbose $ liftIO $ putStr "\n"
liftIO $ hPutStr stderr $ "git-annex: " ++ s ++ " "
liftIO $ hPutStrLn stderr $ "git-annex: " ++ s ++ " "

2
debian/changelog vendored
View file

@ -1,12 +1,12 @@
git-annex (0.10) UNRELEASED; urgency=low
* precommit: Optimise to avoid calling git-check-attr more than once.
* In .gitattributes, the git-annex-numcopies attribute can be used
to control the number of copies to retain of different types of files.
* Bugfix: Always correctly handle gitattributes when in a subdirectory of
the repository.
* fsck: Fix warning about not enough copies of a file, when locations
are known, but are not available in currently configured remotes.
* precommit: Optimise to avoid calling git-check-attr more than once.
-- Joey Hess <joeyh@debian.org> Sun, 28 Nov 2010 14:19:15 -0400