From ed774fafcb6b100ca9be5fa796b4b5e9cfc3a093 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 24 Aug 2017 12:36:04 -0700 Subject: [PATCH] provision: Fix usage to not have line-wrapping issues. --- tools/provision | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/provision b/tools/provision index 530f0ee..7d40061 100755 --- a/tools/provision +++ b/tools/provision @@ -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__, '..', '..'))