provision: Fix usage to not have line-wrapping issues.

This commit is contained in:
Tim Abbott 2017-08-24 12:36:04 -07:00
parent 0984eae9b5
commit ed774fafcb

View file

@ -10,8 +10,11 @@ import subprocess
from importlib import import_module
def main():
parser = argparse.ArgumentParser("Creates a Python virtualenv. Its Python version is equal to "
"the Python version this command is executed with.")
usage = """./tools/provision
Creates a Python virtualenv. Its Python version is equal to
the Python version this command is executed with."""
parser = argparse.ArgumentParser(usage=usage)
parser.parse_args()
base_dir = os.path.abspath(os.path.join(__file__, '..', '..'))