Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updating an inaccurate docstring.
  • Loading branch information
coddingtonbear committed Apr 9, 2014
1 parent c62dbc0 commit fe54aa0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bugwarrior/services/githubutils.py
Expand Up @@ -45,8 +45,12 @@ def get_issues(username, repo, auth):


def get_directly_assigned_issues(auth):
""" username and repo should be strings
auth should be a tuple of username and password.
""" Returns all issues assigned to authenticated user.
This will return all issues assigned to the authenticated user
regardless of whether the user owns the repositories in which the
issues exist.
"""
url = "https://api.github.com/user/issues?per_page=100"
return _getter(url, auth)
Expand Down

0 comments on commit fe54aa0

Please sign in to comment.