[Reproducible-commits] [diffoscope] 04/21: XXX
Joachim Breitner
nomeata at moszumanska.debian.org
Thu Dec 3 15:05:04 UTC 2015
This is an automated email from the git hooks/post-receive script.
nomeata pushed a commit to branch pu/parallel2
in repository diffoscope.
commit 575de1e1f582fc4b4b1ebd7e1c969dd93c8f8dcb
Author: Jérémy Bobbio <lunar at debian.org>
Date: Tue Oct 6 15:05:14 2015 +0000
XXX
---
diffoscope/comparators/gzip.py | 1 -
diffoscope/comparators/utils.py | 2 --
2 files changed, 3 deletions(-)
diff --git a/diffoscope/comparators/gzip.py b/diffoscope/comparators/gzip.py
index defb376..f9f585b 100644
--- a/diffoscope/comparators/gzip.py
+++ b/diffoscope/comparators/gzip.py
@@ -28,7 +28,6 @@ from diffoscope.difference import Difference
class GzipContainer(Archive):
def open_archive(self):
- logger.debug('opening gzip %s', self)
return self
def close_archive(self):
diff --git a/diffoscope/comparators/utils.py b/diffoscope/comparators/utils.py
index b5716ea..9a45323 100644
--- a/diffoscope/comparators/utils.py
+++ b/diffoscope/comparators/utils.py
@@ -177,11 +177,9 @@ class Container(object, metaclass=ABCMeta):
raise NotImplemented
def comparisons(self, other):
- logger.debug('new comparisons %s vs. %s', self, other)
my_members = self.get_members()
other_members = other.get_members()
for name in sorted(my_members.keys() & other_members.keys()):
- logger.debug('comparisons %s', name)
yield my_members.pop(name), other_members.pop(name), NO_COMMENT
for my_name, other_name, score in diffoscope.comparators.perform_fuzzy_matching(my_members, other_members):
comment = 'Files similar despite different names (difference score: %d)' % score
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/diffoscope.git
More information about the Reproducible-commits
mailing list