Skip to content

Commit

Permalink
Formatting error fixed
Browse files Browse the repository at this point in the history
fixed a formatting error in scan-new-system.gmp.py, which caused the build to fail due to code reformatting
  • Loading branch information
ITSEC-DACHSER authored Jul 12, 2024
1 parent f615020 commit 8e75ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/scan-new-system.gmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def create_target(gmp, ipaddress, port_list_id):

def create_task(gmp, ipaddress, target_id, scan_config_id, scanner_id, name="Scan Suspect Host"):
if name == "Scan Suspect Host":
name = f"Scan Suspect Host {ipaddress}"
name = f"Scan Suspect Host {ipaddress}"
else:
name = f"{name}"
name = f"{name}"
response = gmp.create_task(
name=name,
config_id=scan_config_id,
Expand Down

0 comments on commit 8e75ee1

Please sign in to comment.