summaryrefslogtreecommitdiff
path: root/__main__.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-04-16 20:45:34 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-04-16 20:45:34 -0400
commit1c8b2ed542b091cf65541cd530883cb71047cdbd (patch)
tree54961ccbe6bea5faa64e55759a2739f0f1108b40 /__main__.py
parent34a118362ab6a7cd1f9a904935519eb67c64ce37 (diff)
downloadpython-coveragepy-1c8b2ed542b091cf65541cd530883cb71047cdbd.tar.gz
Push some characters around.
Diffstat (limited to '__main__.py')
-rw-r--r--__main__.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/__main__.py b/__main__.py
index 7ad6d73..b11dafc 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)