Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Fix an httpx reference #22

Merged
merged 1 commit into from
Apr 5, 2020
Merged
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 release_often/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def upload(output_dir, pypi_token):


async def make_release(releases_url, version, changelog_entry, oauth_token):
async with gidgethub.httpx.AsyncClient() as client:
async with httpx.AsyncClient() as client:
gh = gidgethub.httpx.GitHubAPI(
client, "brettcannon/release_often", oauth_token=oauth_token
)
Expand Down