Remove non-namespaced launch points

As far as I can tell these were non-namespaced by accident
This commit is contained in:
Kovid Goyal 2022-01-07 14:34:41 +05:30
parent bf84f95a94
commit b9f21f285c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -99,10 +99,6 @@ entry_points = {
# These two are here for backwards compat
'icat': icat,
'list-fonts': list_fonts,
'runpy': runpy,
'launch': launch,
'kitten': run_kitten,
'edit-config': edit_config_file,
'@': remote_control,
'+': namespaced,
@ -110,6 +106,10 @@ entry_points = {
namespaced_entry_points = {k: v for k, v in entry_points.items() if k[0] not in '+@'}
namespaced_entry_points['hold'] = hold
namespaced_entry_points['complete'] = complete
namespaced_entry_points['runpy'] = runpy
namespaced_entry_points['launch'] = launch
namespaced_entry_points['kitten'] = run_kitten
namespaced_entry_points['edit-config'] = edit_config_file
def setup_openssl_environment() -> None: