Skip to content

Commit

Permalink
removed not needed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
wahlflo committed Aug 4, 2023
1 parent 20c387e commit 9ccc85d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions eml_analyzer/library/parser/parsed_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ def _get_decoded_payload_from_message(message: email.message.Message) -> None or
for encoding_format in list_of_possible_encodings:
try:
return payload_in_bytes.decode(encoding_format)
except ValueError as error:
print('Error: ' + str(error))
except ValueError:
continue
raise PayloadDecodingException('Payload could not be decoded')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="eml-analyzer",
version="3.0.0",
version="3.0.1",
author="Florian Wahl",
author_email="florian.wahl.developer@gmail.com",
description="A cli script to analyze an E-Mail in the eml format for viewing the header, extracting attachments, etc.",
Expand Down

0 comments on commit 9ccc85d

Please sign in to comment.