diff options
author | Andras Timar <atimar@suse.com> | 2013-06-03 09:39:36 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-11-05 10:05:08 +0100 |
commit | 94727de4dacd1180f8f44760f3b7529ff1feade3 (patch) | |
tree | 06a4bc98b49721da0ad9b5c9b87df182705b93ba /help-to-wiki.py | |
parent | 7ce1a40e82bea15cfb47644c457e6b6a6a4e0306 (diff) |
Hardcode 4.0 version - it will be available as help.libreoffice.org/4.0
Change-Id: I63fa0615e20debe924404f66d65d86ad41d2d2e1
Diffstat (limited to 'help-to-wiki.py')
-rwxr-xr-x | help-to-wiki.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/help-to-wiki.py b/help-to-wiki.py index 19d58ed56e..42aa072ad2 100755 --- a/help-to-wiki.py +++ b/help-to-wiki.py @@ -49,14 +49,14 @@ def create_wiki_dirs(): ] try: - os.mkdir( "wiki" ) + os.mkdir( "wiki/4.0" ) 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/4.0" + i ) except: pass |