aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/markov.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/markov.py b/modules/markov.py
index 45385756..69091ef5 100644
--- a/modules/markov.py
+++ b/modules/markov.py
@@ -37,7 +37,7 @@ class Module(ModuleManager.BaseModule):
"INSERT OR REPLACE INTO markov VALUES (?, ?, ?, ?, ?)",
[event["channel"].id]+insert+[frequency])
- print(self.generate(event["channel"]))
+ print(self.generate(event["channel"].id))
def _choose(self, words):
words, frequencies = list(zip(*words))