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

Add descriptions for the 'fallback' Debian module file types.

parent e2a21f18
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ from .text import TextFile
class DotChangesFile(TextFile):
DESCRIPTION = "Debian .changes files"
FILE_EXTENSION_SUFFIX = '.changes'
def compare(self, other, *args, **kwargs):
......@@ -35,6 +36,7 @@ class DotChangesFile(TextFile):
class DotDscFile(TextFile):
DESCRIPTION = "Debian .dsc files"
FILE_EXTENSION_SUFFIX = '.dsc'
def compare(self, other, *args, **kwargs):
......@@ -48,6 +50,7 @@ class DotDscFile(TextFile):
class DotBuildinfoFile(TextFile):
DESCRIPTION = "Debian .buildinfo files"
FILE_EXTENSION_SUFFIX = '.buildinfo'
def compare(self, other, *args, **kwargs):
......
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