errbot
errbot copied to clipboard
Errbot is a chatbot, a daemon that connects to your favorite chat service and bring your tools and some fun into the conversation.
In order to let us help you better, please fill out the following fields as best you can: ### I am... * [x] Reporting a bug * [ ] Suggesting...
### I am... * [x] Here about something else ### Issue description `FullStackTest` allows for unittest style testing, it already exists, but is missing from documentation at errbot.io. Maybe make...
In order to let us help you better, please fill out the following fields as best you can: ### I am... * [X] Reporting a bug * [ ] Suggesting...
### I am... * [x] Reporting a bug * [ ] Suggesting a new feature * [ ] Requesting help with running my bot * [ ] Requesting help writing...
In order to let us help you better, please fill out the following fields as best you can: ### I am... * [ ] Reporting a bug * [ ]...
* The maximal message length has previously been set to 510 (probably in order to accomodate the b'\r\n' that are necessary for each IRC message). This turns out not to...
In order to let us help you better, please fill out the following fields as best you can: ### I am... * [x] Reporting a bug * [ ] Suggesting...
### I am... * [] Reporting a bug * [ ] Suggesting a new feature * [ ] Requesting help with running my bot * [x] Requesting help writing plugins...
### I am * suggesting a new feature ### I am running... * Errbot version: latest (4.3.7) * OS version: Ubuntu 14.04 * Python version: 2.7 or 3+ * Using...
```python @arg_botcmd('hostname', type=str, template="search") @arg_botcmd('hostname2', type=str) def ddog_search(self,message, hostname=None, hostname2=None): return {'name': hostname, 'hostname2': hostname2} ``` doesn't work ```python @arg_botcmd('hostname', type=str) @arg_botcmd('hostname2', type=str, template="search") def ddog_search(self,message, hostname=None, hostname2=None): return {'name':...