summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-11-28 17:32:06 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-11-28 17:32:06 -0400
commit7e82d420d80572af2b9f047039ecbafbb2d79e8e (patch)
tree289683e063b2892ff2d8e18350bd8b1b8480321c
parent949e4abc56df1fa23d426f7f86d726ad119fbf54 (diff)
missing \n in -q mode
-rw-r--r--Messages.hs2
-rw-r--r--debian/changelog2
2 files changed, 2 insertions, 2 deletions
diff --git a/Messages.hs b/Messages.hs
index e1cf1539a..2934de428 100644
--- a/Messages.hs
+++ b/Messages.hs
@@ -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 ++ " "
diff --git a/debian/changelog b/debian/changelog
index ad9c00f53..76ee103d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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