diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-06-15 01:15:13 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-06-15 01:15:13 +0100 |
commit | 9d6c80bac902cb5c32146e2a891aa5e1317e144e (patch) | |
tree | b7f0ee6d2fe101cb3f3fe999165987b6ccf9e756 /CAO/GameManager.py | |
parent | c7ede2f1a564fa180e44d341f0019da443e9a005 (diff) |
rearchitecture the data files
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'CAO/GameManager.py')
-rw-r--r-- | CAO/GameManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAO/GameManager.py b/CAO/GameManager.py index 5600f1e..6e0d956 100644 --- a/CAO/GameManager.py +++ b/CAO/GameManager.py @@ -7,7 +7,7 @@ class GameManager(): def __init__(self): self.langs = {} - for filename in next(os.walk('lang'))[1]: + for filename in next(os.walk('usr/share/cao/lang'))[1]: self.langs[filename] = {} for lang in self.langs: |