From 094ae574a2c9107320b6509066e19d75e137a860 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Tue, 18 Dec 2018 19:18:09 -0500 Subject: [PATCH] Refactor gh_api -> github_api --- core/{gh_api.py => github_api.py} | 0 core/version_check.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename core/{gh_api.py => github_api.py} (100%) diff --git a/core/gh_api.py b/core/github_api.py similarity index 100% rename from core/gh_api.py rename to core/github_api.py diff --git a/core/version_check.py b/core/version_check.py index 7876c208..41c3ccb9 100644 --- a/core/version_check.py +++ b/core/version_check.py @@ -14,7 +14,7 @@ import traceback from six.moves.urllib.request import urlretrieve import core -from core import gh_api as github, logger +from core import github_api as github, logger class CheckVersion(object):