provision: Fix usage to not have line-wrapping issues.
This commit is contained in:
parent
0984eae9b5
commit
ed774fafcb
|
@ -10,8 +10,11 @@ import subprocess
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser("Creates a Python virtualenv. Its Python version is equal to "
|
usage = """./tools/provision
|
||||||
"the Python version this command is executed with.")
|
|
||||||
|
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()
|
parser.parse_args()
|
||||||
|
|
||||||
base_dir = os.path.abspath(os.path.join(__file__, '..', '..'))
|
base_dir = os.path.abspath(os.path.join(__file__, '..', '..'))
|
||||||
|
|
Loading…
Reference in a new issue