]> arthur.barton.de Git - bup.git/commitdiff
Send bup meta --list output to stdout, not stderr.
authorRob Browning <rlb@defaultvalue.org>
Wed, 22 Sep 2010 01:34:52 +0000 (20:34 -0500)
committerAvery Pennarun <apenwarr@gmail.com>
Wed, 22 Sep 2010 02:24:19 +0000 (19:24 -0700)
Signed-off-by: Rob Browning <rlb@defaultvalue.org>
lib/bup/metadata.py

index 7c17aa54d4e05d727a621bae61ce70650f559dc9..5e88715a8ad73b518d73d1376dbf4961233f6e2a 100644 (file)
@@ -527,9 +527,9 @@ class _ArchiveIterator:
 def display_archive(file):
     for meta in _ArchiveIterator(file):
         if verbose:
-            print >> sys.stderr, meta.path # FIXME
+            print meta.path # FIXME
         else:
-            print >> sys.stderr, meta.path
+            print meta.path
 
 
 def start_extract(file, create_symlinks=True):