diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-01 18:18:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-01 18:18:10 -0400 |
commit | fa7e9ad605c0cbcd37aadb845e2749765c068db9 (patch) | |
tree | 6875d5544fb41e0a6879ee04d57ec5c3ae571f91 | |
parent | f9340dc4d45ed818ab3c0e6252c37b1098f0268c (diff) | |
download | python-coveragepy-git-fa7e9ad605c0cbcd37aadb845e2749765c068db9.tar.gz |
Fix the urls to the docs.
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | setup.py | 4 |
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__ @@ -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__: |