summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-05-26 14:21:46 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-05-26 14:21:46 -0400
commitf64d11bcb5fee53743cab9add2790c3c2de231d8 (patch)
tree05bd10b3879b33217747425c7387d3f0c19fd6af /boot
parent7233b605e9079688c0a18e4491bc317eb88f618d (diff)
downloadjasper-client-f64d11bcb5fee53743cab9add2790c3c2de231d8.tar.gz
jasper-client-f64d11bcb5fee53743cab9add2790c3c2de231d8.zip
fixed vocabcompiler after init update
Diffstat (limited to 'boot')
-rw-r--r--boot/vocabcompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/vocabcompiler.py b/boot/vocabcompiler.py
index d5455d3..70c1ea3 100644
--- a/boot/vocabcompiler.py
+++ b/boot/vocabcompiler.py
@@ -17,7 +17,7 @@ def compile():
Gets the words and creates the dictionary
"""
- m = dir(modules)
+ m = [name for _, name, _ in pkgutil.iter_modules(['modules'])]
words = []
for module_name in m: