From c2b8a745f7e3e0a218e56f49171934e3fa5c4e24 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 25 Sep 2017 14:09:21 -0400 Subject: [PATCH] - Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 6bffb17f..b85c1bd2 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -2312,7 +2312,7 @@ cli.add_command(check) cli.add_command(shell) cli.add_command(run) -if '--' not in ''.join(sys.argv) and len(sys.argv) > 1: +if '-' not in ''.join(sys.argv) and len(sys.argv) > 1: cli = DYMCommandCollection(sources=[cli]) if __name__ == '__main__':