Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Correct reference to python_module_missing.
· fe2afc0c
Chris Lamb
authored
Oct 14, 2019
Gbp-Dch: ignore
fe2afc0c
releasing package diffoscope version 126
· 06f5b73d
Chris Lamb
authored
Oct 14, 2019
06f5b73d
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
06f5b73d
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 +02
00
-- Chris Lamb
<lamby
@
debian.org
>
Mon, 14 Oct 2019 12:29:47 -07
00
diffoscope (125) unstable; urgency=medium
...
...
diffoscope/__init__.py
View file @
06f5b73d
...
...
@@ -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
=
"
12
5
"
VERSION
=
"
12
6
"
diffoscope/comparators/directory.py
View file @
06f5b73d
...
...
@@ -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
...
...