diff options
Diffstat (limited to '__main__.py')
-rw-r--r-- | __main__.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/__main__.py b/__main__.py index 7ad6d737..b11dafce 100644 --- a/__main__.py +++ b/__main__.py @@ -1,8 +1,6 @@ -"""Be able to execute coverage.py by pointing Python at the repository's -directory.""" -import os -import runpy +"""Be able to execute coverage.py by pointing Python at a working tree.""" +import runpy, os PKG = 'coverage' @@ -10,7 +8,8 @@ try: run_globals = runpy.run_module(PKG, run_name='__main__', alter_sys=True) executed = os.path.splitext(os.path.basename(run_globals['__file__']))[0] if executed != '__main__': # For Python 2.5 compatibility - raise ImportError('Incorrectly executed %s instead of __main__' % - executed) + raise ImportError( + 'Incorrectly executed %s instead of __main__' % executed + ) except ImportError: # For Python 2.6 compatibility runpy.run_module('%s.__main__' % PKG, run_name='__main__', alter_sys=True) |