From 4d83bf73b3394baef87b23f2c8cae7a32c371957 Mon Sep 17 00:00:00 2001 From: Jeremy Banks Date: Sun, 25 Jan 2009 18:46:49 -0500 Subject: [PATCH] loadAuthentication -> load_authentication It's tough to break habits. --- gist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gist.py b/gist.py index a399789..dce5929 100755 --- a/gist.py +++ b/gist.py @@ -9,7 +9,7 @@ URL_GIST_TXT = URL_GIST_VIEW + ".txt" URL_GIST_POST = URL_GIST + "gists" -def loadAuthentication(): +def load_authentication(): """ Loads GitHub/Gist authentication information from the git config, @@ -46,7 +46,7 @@ def __init__(self, authentication=None): else: raise ValueError("Authenication tuple must be of length 2.") else: - self.authentication = loadAuthentication() + self.authentication = load_authentication() def __repr__(self): if self.authentication: