From 5a08ef38c979321765a0fe6360ebad56cd02f80b Mon Sep 17 00:00:00 2001 From: Brett Cannon <54418+brettcannon@users.noreply.github.com> Date: Sun, 5 Apr 2020 13:34:48 -0700 Subject: [PATCH] Fix an httpx reference (#22) --- release_often/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_often/__main__.py b/release_often/__main__.py index fc9c8d0..1cf1ea4 100644 --- a/release_often/__main__.py +++ b/release_often/__main__.py @@ -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 )