1
0
Fork 0

Correzione allo script di build.

This commit is contained in:
Emiliano Vavassori 2022-03-19 22:48:54 +01:00
parent 2f1591cb5d
commit d4d279991a
1 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ import urllib.request
from lxml import etree
import tempfile, os, sys, subprocess, shutil
class Build():
LANGSTD = ['ar', 'de', 'en-GB', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'pt-BR', 'ru', 'zh-CN', 'zh-TW']
class Build(object):
LANGSTD = [ 'ar', 'de', 'en-GB', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'pt-BR', 'ru', 'zh-CN', 'zh-TW' ]
def __init__(self, query, arch, url):
"""Build all versions that can be found in the indicated repo."""
@ -61,7 +61,7 @@ class Build():
# Let's process standard languages and append results to the
# buildtarball
for lang in LANGSTD:
for lang in Build.LANGSTD:
buildtarballs.extend([ x for x in self.__tarballs__ if ('langpack_' + lang) in x ])
# If it was a build with offline help, another extend would have
# solved it: