Skip to content

Commit

Permalink
Remove: Remove unnecessary print statement in check_command_status ut…
Browse files Browse the repository at this point in the history
…ils function

This was some leftover from debugging.
  • Loading branch information
bjoernricks authored and greenbonebot committed Jun 14, 2024
1 parent d9f79bd commit 97c9f80
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gvm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ def check_command_status(xml: str) -> bool:
status = root.attrib["status"]
return status is not None and status[0] == "2"
except KeyError:
print(logger)
logger.error("Not received an status code within the response.")
return False
except XmlError as e:
Expand Down

0 comments on commit 97c9f80

Please sign in to comment.