bots: Migrate source file for zulip-bot-shell to similar name.

This commit is contained in:
neiljp (Neil Pilgrim) 2021-11-19 23:00:56 -08:00 committed by Tim Abbott
parent cca1b7d679
commit e0f3bd4143
3 changed files with 2 additions and 2 deletions

View file

@ -21,6 +21,6 @@ zulip_bots # This directory
│ ├───simple_lib.py # Used for terminal testing.
│ ├───test_lib.py # Backbone for bot unit tests.
│ ├───test_run.py # Unit tests for run.py
│ └───terminal.py # Used to test bots in the command line.
│ └───bot_shell.py # Used to test bots in the command line.
└───setup.py # Script for packaging.
```

View file

@ -52,7 +52,7 @@ package_info = dict(
entry_points={
"console_scripts": [
"zulip-run-bot=zulip_bots.run:main",
"zulip-bot-shell=zulip_bots.terminal:main",
"zulip-bot-shell=zulip_bots.bot_shell:main",
],
},
) # type: Dict[str, Any]