Fix pylint warnings

This commit is contained in:
Cheng Zhao 2016-05-02 16:38:58 +09:00
parent 459a65d296
commit cc24bea813

View file

@ -174,9 +174,9 @@ def update_win32_python():
execute_stdout(['git', 'clone', PYTHON_26_URL])
def build_libchromiumcontent(is_verbose_mode, target_arch):
def build_libchromiumcontent(verbose, target_arch):
args = [os.path.join(SOURCE_ROOT, 'script', 'build-libchromiumcontent.py')]
if is_verbose_mode:
if verbose:
args += ['-v']
execute_stdout(args + ['--target_arch', target_arch])