? tmp Index: duplicity/collections.py =================================================================== RCS file: /sources/duplicity/duplicity/duplicity/collections.py,v retrieving revision 1.19 diff -u -r1.19 collections.py --- duplicity/collections.py 26 Oct 2007 18:58:09 -0000 1.19 +++ duplicity/collections.py 2 Nov 2007 17:47:23 -0000 @@ -382,11 +382,6 @@ l = ["Connecting with backend: %s" % (self.backend.__class__.__name__,), "Archive dir: %s" % (self.archive_dir,)] - if self.matched_chain_pair: - l.append("\nFound a complete backup chain with matching " - "signature chain:") - l.append(str(self.matched_chain_pair[1])) - else: l.append("No backup chains with active signatures found") l.append("\nFound %d backup chains without signatures." % len(self.other_backup_chains)) @@ -396,6 +391,12 @@ l.append(str(self.other_backup_chains[i])) l.append("") + if self.matched_chain_pair: + l.append("\nFound a complete backup chain with matching " + "signature chain:") + l.append(str(self.matched_chain_pair[1])) + else: l.append("No backup chains with active signatures found") + if self.orphaned_backup_sets or self.incomplete_backup_sets: l.append("Also found %d backup sets not part of any chain," % (len(self.orphaned_backup_sets),))