Skip to content

Commit

Permalink
Merge pull request #2051 from SEKOIA-IO/jeromefellus-sekoia-patch-1
Browse files Browse the repository at this point in the history
Typos in code example in navigate-playbooks.md
  • Loading branch information
jeromefellus-sekoia authored Oct 20, 2024
2 parents 4b98a7a + 285ea6a commit 6159b54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _shared_content/automate/navigate-playbooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ from jinja2 import Template
file_json = open("file.json", "r")
loading = json.load(file_json)
# The JINJA partern to be tested
jinja_patern = "{{urgency.value}}"
# The JINJA pattern to be tested
jinja_pattern = "{{urgency.value}}"
tm = Template(jinja_patern)
tm = Template(jinja_pattern)
msg = tm.render(urgency=loading["urgency"])
print(msg)
Expand Down

0 comments on commit 6159b54

Please sign in to comment.