summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coverage/version.py2
-rw-r--r--setup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/coverage/version.py b/coverage/version.py
index 51e1310f..526634c4 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -6,4 +6,4 @@ __version__ = "4.0a6" # see detailed history in CHANGES.txt
__url__ = "https://coverage.readthedocs.org"
if max(__version__).isalpha():
# For pre-releases, use a version-specific URL.
- __url__ += "/en/" + __version__
+ __url__ += "/en/coverage-" + __version__
diff --git a/setup.py b/setup.py
index 5ba95f98..89a242d9 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ library to determine which lines are executable, and which have been executed.
Coverage.py runs on CPython 2.6, 2.7, 3.3, 3.4 or 3.5, PyPy 2.4, and PyPy3 2.4.
-Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue
+Documentation is on `Read the Docs <{docurl}>`_. Code repository and issue
tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_, with a
mirrored repo on `GitHub <https://github.com/nedbat/coveragepy>`_.
@@ -61,7 +61,7 @@ cov_ver_py = os.path.join(os.path.split(__file__)[0], "coverage/version.py")
with open(cov_ver_py) as version_file:
exec(compile(version_file.read(), cov_ver_py, 'exec'))
-doclines = (doc % __url__).splitlines()
+doclines = (doc.format(docurl=__url__)).splitlines()
classifier_list = classifiers.splitlines()
if 'a' in __version__: