Skip to content

Commit c641cac

Browse files
committed
fix typo in splitting
1 parent 3e67a23 commit c641cac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reports/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def parse_updates(updates_string, security):
153153
specifying whether it is a security update or not
154154
"""
155155
updates = {}
156-
ulist = updates_string..split()
156+
ulist = updates_string.split()
157157
while ulist:
158158
name = f'{ulist[0]} {ulist[1]} {ulist[2]}\n'
159159
del ulist[:3]

0 commit comments

Comments
 (0)