From 40ac04235ae802caa74215157cab3f0b77c48e8d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 16 Apr 2011 20:45:34 -0400 Subject: Push some characters around. --- __main__.py | 11 +++++------ 1 file 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) -- cgit v1.2.1