Skip to content
Snippets Groups Projects
Commit e2a21f18 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Clarify the message when we cannot find the "debian" Python module.

parent 13dff092
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
# diffoscope: in-depth comparison of files, archives, and directories
#
# Copyright © 2015 Jérémy Bobbio <lunar@debian.org>
# Copyright © 2016-2019 Chris Lamb <lamby@debian.org>
# Copyright © 2016-2020 Chris Lamb <lamby@debian.org>
#
# diffoscope is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
......@@ -29,7 +29,7 @@ class DotChangesFile(TextFile):
if not difference:
return None
difference.add_comment(
'Unable to find Python debian module. Falling back to text comparison.'
'Unable to find the "debian" Python module. Falling back to text comparison.'
)
return difference
......@@ -42,7 +42,7 @@ class DotDscFile(TextFile):
if not difference:
return None
difference.add_comment(
'Unable to find Python debian module. Falling back to text comparison.'
'Unable to find the "debian" Python module. Falling back to text comparison.'
)
return difference
......@@ -55,6 +55,6 @@ class DotBuildinfoFile(TextFile):
if not difference:
return None
difference.add_comment(
'Unable to find Python debian module. Falling back to text comparison.'
'Unable to find the "debian" Python module. Falling back to text comparison.'
)
return difference
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment