Change CompletableGithubObject.__init__ without breaking build.

This commit is contained in:
AKFish
2013-08-21 14:49:20 +08:00
parent a1b65636df
commit ca6189c3c9
32 changed files with 95 additions and 3 deletions
+2 -1
View File
@@ -34,7 +34,8 @@ class RepositoryKey(github.GithubObject.CompletableGithubObject):
"""
def __init__(self, requester, attributes, completed, repoUrl):
github.GithubObject.CompletableGithubObject.__init__(self, requester, attributes, completed)
##############NOTE: this one should not be removed but modified
github.GithubObject.CompletableGithubObject.__init__(self, requester, {}, attributes, completed)
self.__repoUrl = repoUrl
@property