Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/create-alerts-from-csv.gmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

HELP_TEXT = (
"This script pulls alert information "
"from a csv file and creates a alert for each row. \n"
"from a csv file and creates an alert for each row. \n"
"use the same alert names when creating tasks! \n\n"
"Use example alerts.csv as a template \n\n"
"It should be rather self explanatory."
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-filters-from-csv.gmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def create_filters(
print("FilterType: " + filterType.upper() + " Not supported")
try:
if filter_id(gmp, filterNameFull):
print(f"Filter: {filterNameFull} exist, not creating...")
print(f"Filter: {filterNameFull} exists, not creating...")
continue

print("Creating filter: " + filterNameFull)
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-targets-from-csv.gmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def create_targets(
comment = f"Created: {time.strftime('%Y/%m/%d-%H:%M:%S')}"
try:
if target_id(gmp, name):
print(f"Target: {name} exist, not creating...")
print(f"Target: {name} exists, not creating...")
continue

print("Creating target: " + name)
Expand Down
Loading