Remove calls to make_binary and make_unknown

pull/16/head
Dan Puttick 2017-07-14 21:57:29 -04:00
parent 41abe7e5d6
commit 7363a16318
1 changed files with 2 additions and 4 deletions

View File

@ -441,13 +441,11 @@ class File(FileBase):
def _unknown_app(self):
"""Process an unknown file."""
self.add_description('Unknown application file')
self.make_unknown()
self.make_dangerous('Unknown application file')
def _binary_app(self):
"""Process an unknown binary file."""
self.add_description('Unknown binary file')
self.make_binary()
self.make_dangerous('Unknown binary file')
#######################
# Metadata extractors