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

Change the "No file format specific differences found inside, yet data...

Change the "No file format specific differences found inside, yet data differs" message to be clearer that diffoscope "knows" about this file format yet could not be helpful in this case.
parent f4c7fe9e
No related branches found
No related tags found
No related merge requests found
......@@ -368,8 +368,10 @@ class File(object, metaclass=abc.ABCMeta):
if difference is None:
return None
difference.add_comment(
"No file format specific differences found inside, "
"yet data differs ({})".format(self.magic_file_type),
"Format-specific differences are supported for this "
"file format but none were detected ({})".format(
self.magic_file_type,
),
)
except subprocess.CalledProcessError as e:
difference = self.compare_bytes(other, source=source)
......
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