We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca1b7d commit e0f3bd4Copy full SHA for e0f3bd4
zulip_bots/README.md
@@ -21,6 +21,6 @@ zulip_bots # This directory
21
│ ├───simple_lib.py # Used for terminal testing.
22
│ ├───test_lib.py # Backbone for bot unit tests.
23
│ ├───test_run.py # Unit tests for run.py
24
-│ └───terminal.py # Used to test bots in the command line.
+│ └───bot_shell.py # Used to test bots in the command line.
25
└───setup.py # Script for packaging.
26
```
zulip_bots/setup.py
@@ -52,7 +52,7 @@
52
entry_points={
53
"console_scripts": [
54
"zulip-run-bot=zulip_bots.run:main",
55
- "zulip-bot-shell=zulip_bots.terminal:main",
+ "zulip-bot-shell=zulip_bots.bot_shell:main",
56
],
57
},
58
) # type: Dict[str, Any]
zulip_bots/zulip_bots/terminal.py renamed to zulip_bots/zulip_bots/bot_shell.py
0 commit comments