Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions webtools/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down