diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-07-21 22:38:33 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-07-21 22:38:33 +0200 |
commit | 984fa1addf3b0ad694978d244ccd73123ca30608 (patch) | |
tree | 5ed90685b1649455e49c63083383f2f6b71259ee /modules | |
parent | cd01be4952a6ef00cf325e7a9f818872dc7dfcf0 (diff) | |
download | curunir-984fa1addf3b0ad694978d244ccd73123ca30608.tar curunir-984fa1addf3b0ad694978d244ccd73123ca30608.zip |
Allow setting parameters for fortune in config file
Diffstat (limited to 'modules')
-rw-r--r-- | modules/fortune.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fortune.py b/modules/fortune.py index e7c999e..09e2e41 100644 --- a/modules/fortune.py +++ b/modules/fortune.py @@ -17,4 +17,4 @@ class Module(ModuleBase): if not re.match(r'!fortune(?:\W|\Z)', text): return - handler.reply(subprocess.Popen([self.fortune], stdout=subprocess.PIPE).communicate()[0].strip()) + handler.reply(subprocess.Popen(self.fortune, stdout=subprocess.PIPE).communicate()[0].strip()) |