Merged in okin/pytest/okin/only-one-import-on-one-line-if-this-shou-1421239108222 (pull request #238)

Only one import on one line.
This commit is contained in:
holger krekel 2015-01-15 21:22:49 +01:00
commit 8859936301
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ this to your ``setup.py`` file::
pass
def run(self):
import sys,subprocess
import subprocess
import sys
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)