Skip to content
Merged
Show file tree
Hide file tree
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 github2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_blob_info(self, project, tree_sha, path):
return blob.get("blob")

def get_tree(self, project, tree_sha):
"""Get tree information for a specifc tree.
"""Get tree information for a specific tree.
:param str project: GitHub project
:param str tree_sha: object ID of tree
Expand Down
2 changes: 1 addition & 1 deletion github2/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class GithubError(Exception):

class HttpError(RuntimeError):

"""A HTTP error occured when making a request to the GitHub API."""
"""A HTTP error occurred when making a request to the GitHub API."""

def __init__(self, message, content, code):
"""Create a HttpError exception.
Expand Down