mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
Changed formating and print method
- Changed formating to have no lines longer than 120 characters - replaced print() with richt_print_error() to print formatted error message
This commit is contained in:
parent
18ca3104a5
commit
a5eeca7d9a
@ -522,9 +522,14 @@ def search_plugin_spiget(plugin_file: str, plugin_file_name: str, plugin_file_ve
|
|||||||
plugin_list = api_do_request(url)
|
plugin_list = api_do_request(url)
|
||||||
|
|
||||||
# Handle failed api request
|
# Handle failed api request
|
||||||
"""{'error': 'Unexpected Exception', 'msg': 'Unexpected Exception. Please report this to https://github.com/SpiGetOrg/api.spiget.org/issues'}"""
|
"""
|
||||||
|
{'error': 'Unexpected Exception', 'msg': 'Unexpected Exception. Please report this to
|
||||||
|
https://github.com/SpiGetOrg/api.spiget.org/issues'}
|
||||||
|
"""
|
||||||
if "error" in plugin_list:
|
if "error" in plugin_list:
|
||||||
print(f"Spiget error occurred whilst searching for plugin '{plugin_file}': {plugin_list['msg']}")
|
rich_print_error(
|
||||||
|
f"[not bold]Error: Spiget error occurred whilst searching for plugin '{plugin_file}': {plugin_list['msg']}"
|
||||||
|
)
|
||||||
return plugin_list['msg']
|
return plugin_list['msg']
|
||||||
else:
|
else:
|
||||||
plugin_file_version2 = plugin_file_version
|
plugin_file_version2 = plugin_file_version
|
||||||
|
Loading…
Reference in New Issue
Block a user