Commit 24b2d0c0cf45eb3cbc4e6cc3994f574209f6af5d
1 parent
98c8a538
Exists in
master
Corrige path do Windows dos arquivos
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/AplicadorRegras.py
... | ... | @@ -15,7 +15,7 @@ class AplicadorRegras(object): |
15 | 15 | |
16 | 16 | so = platform.system() |
17 | 17 | if so == 'Windows': |
18 | - self.__tree = ET.parse(environ.get("HOMEDRIVE")+'\\vlibras-translate\data\regras.xml') | |
18 | + self.__tree = ET.parse(environ.get("HOMEDRIVE")+'\\vlibras-libs\\vlibras-translate\data\regras.xml') | |
19 | 19 | else: |
20 | 20 | self.__tree = ET.parse(expanduser("~")+'/vlibras-translate/data/regras.xml') |
21 | 21 | ... | ... |
src/WorkCSV.py
... | ... | @@ -14,7 +14,7 @@ class WorkCSV(object): |
14 | 14 | |
15 | 15 | so = platform.system() |
16 | 16 | if so == 'Windows': |
17 | - self.__path = environ.get("HOMEDRIVE") + "\\vlibras-translate\data\" | |
17 | + self.__path = environ.get("HOMEDRIVE") + "\\vlibras-libs\\vlibras-translate\data\" | |
18 | 18 | else: |
19 | 19 | self.__path = expanduser("~") + "/vlibras-translate/data/" |
20 | 20 | ... | ... |