diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-04-01 17:12:24 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-04-01 17:12:24 +0200 |
commit | 7d6c9bb3c0c13bb608da0217d13db636a88b9c0e (patch) | |
tree | 6f3abdc241cf28d6af7255afb822a4fb4f414697 /genFAQ.py | |
parent | 8248b3de1a4b012614ac13c5392c96678ee9c4df (diff) |
Fix genFAQ.py script
Diffstat (limited to 'genFAQ.py')
-rwxr-xr-x | genFAQ.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ def main(): open(faqpath + "/FAQ.wiki","w").write(faq) for directory in os.listdir("res"): - if directory.startswith("values-"): + if directory.startswith("values-") and directory.find("-sw")==-1: lang = directory.split("-",1)[1] print lang loadstrres("res/values-%s/strings.xml" % lang,lang) |