Commit 5a89d4361c0847beaf159994a06725fe5a644935

Authored by Erickson Silva
1 parent 54b3e62e
Exists in devel

[TranslationServer] Adiciona '_' nos paths dos estados

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/TranslationServer.py
... ... @@ -101,7 +101,7 @@ def list_bundles():
101 101 BUNDLES_LIST[platform] = {}
102 102 for state in states:
103 103 try:
104   - BUNDLES_LIST[platform].update({state:set(os.listdir(os.path.join(path, state)))})
  104 + BUNDLES_LIST[platform].update({state:set(os.listdir(os.path.join(path, "_"+state)))})
105 105 except OSError:
106 106 BUNDLES_LIST[platform].update({state:set([])})
107 107  
... ...