Skip to content

Commit

Permalink
add summary instead of description
Browse files Browse the repository at this point in the history
  • Loading branch information
msaipraneeth committed Dec 16, 2024
1 parent 593d640 commit 502894f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions generate_plugin_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def fetch_plugin_info(plugin_name):
return {
"id": plugin_name,
"name": info['name'],
"description": info['description'] or "No description available",
"summary": info['summary'] or "No summary available", # Added summary field
"latest_version": info['version']
}
except requests.RequestException as e:
Expand All @@ -42,4 +42,3 @@ def fetch_plugin_info(plugin_name):
json.dump(plugin_info_list, file, indent=4)

print(f"Found {len(plugin_info_list)} cmem-plugin packages.")

0 comments on commit 502894f

Please sign in to comment.