From 1d9b5284bdc1d3a6f1cd67ef82e8b882299e5683 Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Tue, 14 Jun 2016 20:11:23 +0000 Subject: Remove invalid return value in tox.cmdline() example --- doc/example/basic.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/example/basic.txt b/doc/example/basic.txt index 64150f3..84fed34 100644 --- a/doc/example/basic.txt +++ b/doc/example/basic.txt @@ -260,8 +260,7 @@ a test run when ``python setup.py test`` is issued:: args = self.tox_args if args: args = shlex.split(self.tox_args) - errno = tox.cmdline(args=args) - sys.exit(errno) + tox.cmdline(args=args) setup( #..., -- cgit v1.2.1