Skip to content
Commits on Source (2)
diffoscope (126) UNRELEASED; urgency=medium
diffoscope (126) unstable; urgency=medium
* WIP
[ Chris Lamb ]
* Track and report on missing Python modules.
(Closes: reproducible-builds/diffoscope#72)
* Drop some unnecessary control flow.
* Drop explicit inheriting from 'object' class; unnecessary in Python 3.
* Bump Standards-Version to 4.4.1.
[ Mattia Rizzolo ]
* Exit with 2 instead of 1 in case of no disk space.
-- Chris Lamb <lamby@debian.org> Wed, 18 Sep 2019 11:48:35 +0200
-- Chris Lamb <lamby@debian.org> Mon, 14 Oct 2019 12:29:47 -0700
diffoscope (125) unstable; urgency=medium
......
......@@ -17,4 +17,4 @@
# You should have received a copy of the GNU General Public License
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
VERSION = "125"
VERSION = "126"
......@@ -120,7 +120,7 @@ def xattr(path1, path2):
try:
import xattr as xattr_
except ImportError:
python_module_required('xattr')
python_module_missing('xattr')
return None
# Support the case where the python3-xattr package is installed but
......