From eb76e7bb8f85ed406bc452a479fb9c23142ad811 Mon Sep 17 00:00:00 2001 From: Ryan McClarnon Date: Mon, 23 Jan 2017 11:12:00 +0000 Subject: [PATCH 1/2] Minor spelling fix --- pipenv/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 7985d5b9..14b2912a 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -406,7 +406,7 @@ def uninstall(package_name=False, more_packages=False, system=False): def lock(dev=False): do_lock(dev=dev) -@click.command(help="Spans a shell within the virtualenv.") +@click.command(help="Spawns a shell within the virtualenv.") def shell(): # Ensure that virtualenv is available. ensure_project() @@ -427,7 +427,7 @@ def shell(): c.interact() -@click.command(help="Spans a command installed into the virtualenv.", context_settings=dict( +@click.command(help="Spawns a command installed into the virtualenv.", context_settings=dict( ignore_unknown_options=True, allow_extra_args=True )) From 87d800a3408f93abb8f68c2dad9c87fe3a2843d9 Mon Sep 17 00:00:00 2001 From: Ryan McClarnon Date: Mon, 23 Jan 2017 13:26:28 +0000 Subject: [PATCH 2/2] Also correct 'span' to 'spawn' in README --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 2852aa1d..3125dec8 100644 --- a/README.rst +++ b/README.rst @@ -79,8 +79,8 @@ Other Commands check Checks PEP 508 markers provided in Pipfile. install Installs a provided package and adds it to... lock Generates Pipfile.lock. - run Spans a command installed into the... - shell Spans a shell within the virtualenv. + run Spawns a command installed into the... + shell Spanws a shell within the virtualenv. uninstall Un-installs a provided package and removes it... update Updates pip to latest version, uninstalls all...