diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-26 14:21:46 -0400 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-26 14:21:46 -0400 |
| commit | f64d11bcb5fee53743cab9add2790c3c2de231d8 (patch) | |
| tree | 05bd10b3879b33217747425c7387d3f0c19fd6af | |
| parent | 7233b605e9079688c0a18e4491bc317eb88f618d (diff) | |
| download | jasper-client-f64d11bcb5fee53743cab9add2790c3c2de231d8.tar.gz jasper-client-f64d11bcb5fee53743cab9add2790c3c2de231d8.zip | |
fixed vocabcompiler after init update
| -rw-r--r-- | boot/vocabcompiler.py | 2 |
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: |
