Skip to content

Commit 16316df

Browse files
Avicennasisbjoernricks
authored andcommitted
docs: fix grammar in script messages
1 parent 63331dc commit 16316df

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/create-alerts-from-csv.gmp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
HELP_TEXT = (
2222
"This script pulls alert information "
23-
"from a csv file and creates a alert for each row. \n"
23+
"from a csv file and creates an alert for each row. \n"
2424
"use the same alert names when creating tasks! \n\n"
2525
"Use example alerts.csv as a template \n\n"
2626
"It should be rather self explanatory."

scripts/create-filters-from-csv.gmp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def create_filters(
152152
print("FilterType: " + filterType.upper() + " Not supported")
153153
try:
154154
if filter_id(gmp, filterNameFull):
155-
print(f"Filter: {filterNameFull} exist, not creating...")
155+
print(f"Filter: {filterNameFull} exists, not creating...")
156156
continue
157157

158158
print("Creating filter: " + filterNameFull)

scripts/create-targets-from-csv.gmp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def create_targets(
145145
comment = f"Created: {time.strftime('%Y/%m/%d-%H:%M:%S')}"
146146
try:
147147
if target_id(gmp, name):
148-
print(f"Target: {name} exist, not creating...")
148+
print(f"Target: {name} exists, not creating...")
149149
continue
150150

151151
print("Creating target: " + name)

0 commit comments

Comments
 (0)