Fix pylint warnings

This commit is contained in:
Cheng Zhao 2015-04-08 19:19:40 +08:00
parent 1b3b2cd402
commit 555e06573a
2 changed files with 8 additions and 22 deletions

View file

@ -1,6 +1,5 @@
#!/usr/bin/env python
import argparse
import os
import re
import shutil
@ -79,8 +78,6 @@ def main():
rm_rf(DIST_DIR)
os.makedirs(DIST_DIR)
args = parse_args()
force_build()
create_symbols()
copy_binaries()
@ -96,17 +93,6 @@ def main():
create_symbols_zip()
def parse_args():
parser = argparse.ArgumentParser(description='Create distributions')
parser.add_argument('-u', '--url',
help='The base URL from which to download '
'libchromiumcontent (i.e., the URL you passed to '
'libchromiumcontent\'s script/upload script',
default=BASE_URL,
required=False)
return parser.parse_args()
def force_build():
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
execute([sys.executable, build, '-c', 'Release'])