Skip to content

Commit 2441375

Browse files
committed
Typo
1 parent 72f1f8d commit 2441375

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_readme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ def build():
2121
]
2222
name_pattern = re.compile(r"name\s*=\s*\"(.+)\"$")
2323
version_pattern = re.compile(r"version\s*=\s*\"(.+)\"$")
24-
deescription_pattern = re.compile(r"description\s*=\s*\"(.+)\"$")
24+
description_pattern = re.compile(r"description\s*=\s*\"(.+)\"$")
2525
display_name_pattern = re.compile(r".+/(.+)")
2626
for path in Path("./modules").iterdir():
2727
with open(Path.joinpath(path, Path("wally.toml")), "r") as f:
2828
lines = f.read().splitlines()
2929
for line in lines:
3030
match_name = name_pattern.match(line)
3131
match_version = version_pattern.match(line)
32-
match_description = deescription_pattern.match(line)
32+
match_description = description_pattern.match(line)
3333
if match_name:
3434
name = match_name.group(1)
3535
elif match_version:

0 commit comments

Comments
 (0)