File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -333,10 +333,10 @@ def parse_description(element):
333
333
parts = element .text .split (" - " )
334
334
output = {}
335
335
output ["date" ] = clean (parts [0 ])
336
- output ["name" ] = clean (parts [1 ])
337
- output ["hash" ] = clean (parts [2 ])
338
- output ["type" ] = clean (parts [3 ])
339
- output ["size" ] = clean (parts [4 ])
336
+ # output["name"] = clean(parts[1])
337
+ output ["hash" ] = clean (parts [1 ])
338
+ output ["type" ] = clean (parts [2 ])
339
+ output ["size" ] = clean (parts [3 ])
340
340
return output
341
341
342
342
# iterate through the found versions
@@ -362,7 +362,7 @@ def parse_description(element):
362
362
info ["size" ] = description_data ["size" ]
363
363
info ["type" ] = description_data ["type" ]
364
364
info ["url" ] = clean (url )
365
- info ["version" ] = description_data [ " name" ] + "_" + description_data ["hash" ]
365
+ info ["version" ] = name + "_" + description_data ["hash" ]
366
366
367
367
# Set "os" based on URL
368
368
if "windows" in clean (url ):
You can’t perform that action at this time.
0 commit comments