Merge lp://staging/~mdione/lalita/url-plugin into lp://staging/lalita
Proposed by
Marcos Dione
Status: | Merged | ||||||||
---|---|---|---|---|---|---|---|---|---|
Merged at revision: | 177 | ||||||||
Proposed branch: | lp://staging/~mdione/lalita/url-plugin | ||||||||
Merge into: | lp://staging/lalita | ||||||||
Diff against target: |
236 lines (+53/-30) 2 files modified
lalita/ircbot.py (+11/-5) lalita/plugins/url.py (+42/-25) |
||||||||
To merge this branch: | bzr merge lp://staging/~mdione/lalita/url-plugin | ||||||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Facundo Batista | Approve | ||
Review via email: mp+164588@code.staging.launchpad.net |
Description of the change
fixes bug #1181506.
To post a comment you must log in.
Some details:
- When logging, use the safe way to build strings... like this (not using '%'):
logger. debug(' command_ char: %s', self.command_char)
- Don't log 'msg' *again* in the cases of "found he's talking to me" and "command char found" (no point of having a bigger log and more difficult to read if the info is already there)
- Revert the change in seen.py (the separation for the class should be two lines, and there's no point of touching a file in the history only for a blank change).
- Try to be pep 8, please!