File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ def build():
21
21
]
22
22
name_pattern = re .compile (r"name\s*=\s*\"(.+)\"$" )
23
23
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*\"(.+)\"$" )
25
25
display_name_pattern = re .compile (r".+/(.+)" )
26
26
for path in Path ("./modules" ).iterdir ():
27
27
with open (Path .joinpath (path , Path ("wally.toml" )), "r" ) as f :
28
28
lines = f .read ().splitlines ()
29
29
for line in lines :
30
30
match_name = name_pattern .match (line )
31
31
match_version = version_pattern .match (line )
32
- match_description = deescription_pattern .match (line )
32
+ match_description = description_pattern .match (line )
33
33
if match_name :
34
34
name = match_name .group (1 )
35
35
elif match_version :
You can’t perform that action at this time.
0 commit comments