summaryrefslogtreecommitdiff
path: root/helpcontent2/help-to-wiki.py
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2012-06-28 11:46:29 +0200
committerJan Holesovsky <kendy@suse.cz>2012-06-28 11:49:53 +0200
commitcb0b024d6c5c411a16d09c944452e3e283bb326b (patch)
treec65ddc50abe94125cbb7e3805f570bd054677c40 /helpcontent2/help-to-wiki.py
parent5a905683ea3d3e2d6f1da33a6a8ba1ee418fe4a4 (diff)
Hardcode 3.5 version - it will be available as help.libreoffice.org/3.5 libreoffice-3-5
Signed-off-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'helpcontent2/help-to-wiki.py')
-rwxr-xr-xhelpcontent2/help-to-wiki.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpcontent2/help-to-wiki.py b/helpcontent2/help-to-wiki.py
index 90b30982d1..cc67098320 100755
--- a/helpcontent2/help-to-wiki.py
+++ b/helpcontent2/help-to-wiki.py
@@ -43,13 +43,14 @@ def create_wiki_dirs():
try:
os.mkdir( "wiki" )
+ os.mkdir( "wiki/3.5" )
except:
sys.stdout.write( "wiki already generated - the wiki/ subdir exists\n" )
sys.exit( 1 )
for i in dirs:
try:
- os.mkdir( "wiki/" + i )
+ os.mkdir( "wiki/3.5/" + i )
except:
pass