diff options
author | 2011-11-09 02:10:29 +0100 | |
---|---|---|
committer | 2011-11-09 02:10:29 +0100 | |
commit | 40cbe596f0d726461d65d6473c2d197f63232641 (patch) | |
tree | c87f4e23f72c1c9391c1024087a2dd5460e9d6c4 /github3/models/repos.py | |
parent | Support for proxys in _bool handler (diff) | |
download | python-github3-40cbe596f0d726461d65d6473c2d197f63232641.tar.xz python-github3-40cbe596f0d726461d65d6473c2d197f63232641.zip |
Fixing bugs. Crazy night :S
Diffstat (limited to 'github3/models/repos.py')
-rw-r--r-- | github3/models/repos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/github3/models/repos.py b/github3/models/repos.py index ba6ac33..d1b7b75 100644 --- a/github3/models/repos.py +++ b/github3/models/repos.py @@ -22,8 +22,8 @@ class Repo(BaseResource): 'maps': { 'owner': User, 'organization': Org, - 'parent': 'self', - 'source': 'self', + 'parent': self.__class__, + 'source': self.__class__, } } |