diff --git a/README.md b/README.md index 421e660..d0eec34 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To install the latest release from PyPI, run: pip install website-build-tools ``` -To install the latest code from GitHub, run: +To install the latest code from Github, run: ```bash pip install git+https://github.com/DefElement/website-build-tools.git diff --git a/webtools/markup.py b/webtools/markup.py index 736ecba..a6865e2 100644 --- a/webtools/markup.py +++ b/webtools/markup.py @@ -201,7 +201,7 @@ def list_contributors(format: str = "html") -> str: out += contributors_out if settings.github_token is None or settings.repo is None: - warnings.warn("Building without GitHub token. Skipping search for GitHub contributors.") + warnings.warn("Building without Github token. Skipping search for Github contributors.") else: g = Github(settings.github_token) repo = g.get_repo(settings.repo) @@ -248,7 +248,7 @@ def list_contributors(format: str = "html") -> str: names.append(info["name"]) if settings.github_token is None or settings.repo is None: - warnings.warn("Building without GitHub token. Skipping search for GitHub contributors.") + warnings.warn("Building without Github token. Skipping search for Github contributors.") else: included = [info["github"] for info in people if "github" in info] g = Github(settings.github_token)