소스 검색

Language parameter migh be missing in the wx file. Thanks to Luca Delucchi for spotting this.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59176 15284696-431f-4ddb-bdfa-cd5b030d7da7
Maris Nartiss 11 년 전
부모
커밋
29d41a0bbf
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lib/init/grass.py

+ 1 - 0
lib/init/grass.py

@@ -770,6 +770,7 @@ def set_language():
     except:
         # Language override has not been defined or is inaccessible
         return
+    language = 'None' # Such string sometimes is present in wx file
     for line in fd:
         if re.search('^language', line):
             line = line.rstrip('%s' % os.linesep)