diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-06-11 00:03:24 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-06-11 00:03:24 +0200 |
commit | bc7e03f21199a471322bb58aa1f47c82c2167734 (patch) | |
tree | f2ce3b173a807a315da7930aab52133a928fbab3 | |
parent | 31aaf5a71a69e5cc2249d3205c952e9aecc65e65 (diff) |
fix faq script, ignore gradle/idea dirs
--HG--
extra : rebase_source : e66365a57f65fb28f6d10c156cdaddbed1ee7d04
-rw-r--r-- | .hgignore | 3 | ||||
-rwxr-xr-x | misc/genFAQ.py | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -70,4 +70,5 @@ local.properties proguard-project.txt build.xml cache.properties -.gradle
\ No newline at end of file +.gradle +.idea
\ No newline at end of file diff --git a/misc/genFAQ.py b/misc/genFAQ.py index 5306cef7..ccd3e589 100755 --- a/misc/genFAQ.py +++ b/misc/genFAQ.py @@ -32,7 +32,7 @@ def getString(strid,lang): def genPage(faqdom,lang): out ="" - out+="#summary %s\n" % getString("faq_summary",lang) + #out+="#summary %s\n" % getString("faq_summary",lang) out+= header for xmld in faqdom.firstChild.childNodes: |