diff options
| author | 2019-01-26 16:01:17 +0000 | |
|---|---|---|
| committer | 2019-01-26 16:01:17 +0000 | |
| commit | eb5c685128bd37479ea3c2acba29b5d3889171b2 (patch) | |
| tree | 1c68bd0f80423f07435e1cc9d53b1d66fbc36146 /modules/quotes.py | |
| parent | Only search messages from other users in `find_from` (src/IRCBuffer.py) (diff) | |
| signature | ||
Typo, 'quote' -> 'quotes' (quotes.py)
Diffstat (limited to 'modules/quotes.py')
| -rw-r--r-- | modules/quotes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/quotes.py b/modules/quotes.py index 052f46b0..900a3822 100644 --- a/modules/quotes.py +++ b/modules/quotes.py @@ -10,7 +10,7 @@ class Module(ModuleManager.BaseModule): def _get_quotes(self, server, category): return server.get_setting("quotes-%s" % category, []) def _set_quotes(self, server, category, quotes): - server.set_setting("quote-%s" % category, quotes) + server.set_setting("quotes-%s" % category, quotes) @utils.hook("received.command.qadd", alias_of="quoteadd") @utils.hook("received.command.quoteadd", min_args=1) |
