]> arthur.barton.de Git - bup.git/blobdiff - cmd/bloom-cmd.py
configure.inc: name the tmpdir with a configure- prefix
[bup.git] / cmd / bloom-cmd.py
index 05b7d1e55a4ab6370e2e96c28e94bed1c5c2c876..0e7fbf4986facb51491c9539e4c6e5ed28b401fe 100755 (executable)
@@ -5,6 +5,7 @@ exec "$bup_python" "$0" ${1+"$@"}
 """
 # end of bup preamble
 
+from __future__ import absolute_import
 import glob, os, sys, tempfile
 
 from bup import options, git, bloom
@@ -109,7 +110,7 @@ def do_bloom(path, outfilename):
     msg = b is None and 'creating from' or 'adding'
     if not _first: _first = path
     dirprefix = (_first != path) and git.repo_rel(path)+': ' or ''
-    progress('bloom: %s%s %d file%s (%d object%s).\n'
+    progress('bloom: %s%s %d file%s (%d object%s).\r'
         % (dirprefix, msg,
            len(add), len(add)!=1 and 's' or '',
            add_count, add_count!=1 and 's' or ''))