diff options
-rwxr-xr-x | helpcontent2/help-to-wiki.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpcontent2/help-to-wiki.py b/helpcontent2/help-to-wiki.py index ca3b774d93..d25cb99847 100755 --- a/helpcontent2/help-to-wiki.py +++ b/helpcontent2/help-to-wiki.py @@ -94,11 +94,11 @@ os.system( "python to-wiki/getalltitles.py source/text > alltitles.csv" ) try: sdf_path = args[0] except: - sdf_path = '../../l10n/l10n/source' + sdf_path = '../../translations/unxlngx6.pro/misc/sdf-l10n' sys.stderr.write('Path to the .sdf files not provided, using "%s"\n'% sdf_path) # do the work for lang in langs: - wikiconv2.convert(generate_redirects, lang, '%s/%s/localize.sdf'% (sdf_path, lang)) + wikiconv2.convert(generate_redirects, lang, '%s/%s.sdf'% (sdf_path, lang)) # vim:set shiftwidth=4 softtabstop=4 expandtab: |