Skip to content

Commit

Permalink
loadAuthentication -> load_authentication
Browse files Browse the repository at this point in the history
It's tough to break habits.
  • Loading branch information
jeremyBanks committed Jan 25, 2009
1 parent ecff3f5 commit 4d83bf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gist.py
Expand Up @@ -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,
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 4d83bf7

Please sign in to comment.