From c39a187ef78bf7049c8e53016c162c721d100595 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 30 Apr 2009 07:16:54 -0400 Subject: The name of the project is Coverage, not coverage.py. --- coverage/cmdline.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'coverage/cmdline.py') diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 39d92927..dae3adf8 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -1,4 +1,4 @@ -"""Command-line support for coverage.py""" +"""Command-line support for Coverage.""" import getopt, sys @@ -53,7 +53,7 @@ COVERAGE_FILE environment variable to save it somewhere else. class CoverageScript: - """The command-line interface to coverage.py""" + """The command-line interface to Coverage.""" def __init__(self): import coverage @@ -61,7 +61,7 @@ class CoverageScript: self.coverage = coverage.coverage() def help(self, error=None): - """Display an error message, or the usage for coverage.py.""" + """Display an error message, or the usage for Coverage.""" if error: print error print "Use -h for help." @@ -69,7 +69,7 @@ class CoverageScript: print USAGE % self.covpkg.__dict__ def command_line(self, argv, help_fn=None): - """The bulk of the command line interface to coverage.py. + """The bulk of the command line interface to Coverage. `argv` is the argument list to process. `help_fn` is the help function to use when something goes wrong. @@ -182,7 +182,7 @@ class CoverageScript: def main(): - """The main entrypoint to coverage.py. + """The main entrypoint to Coverage. This is installed as the script entrypoint. -- cgit v1.2.1