diff options
| author | 2012-02-07 22:51:46 +0100 | |
|---|---|---|
| committer | 2012-02-07 22:51:46 +0100 | |
| commit | de2c7806ca52e9c5470705f5ebb4955f8ba3942c (patch) | |
| tree | 4027b5d9b166e08ed00b1fd144d1f0e69daeb4ad /pygithub3/core | |
| parent | Clean requests interface (diff) | |
| download | python-github3-de2c7806ca52e9c5470705f5ebb4955f8ba3942c.tar.xz python-github3-de2c7806ca52e9c5470705f5ebb4955f8ba3942c.zip | |
Fix litle bugs
Diffstat (limited to '')
| -rw-r--r-- | pygithub3/core/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/core/client.py b/pygithub3/core/client.py index d9ecf81..84d47ad 100644 --- a/pygithub3/core/client.py +++ b/pygithub3/core/client.py @@ -37,7 +37,7 @@ class Client(object): return self.config.get('user') @user.setter - def set_user(self, user): + def user(self, user): self.config['user'] = user @property @@ -45,7 +45,7 @@ class Client(object): return self.config.get('repo') @repo.setter - def set_repo(self, repo): + def repo(self, repo): self.config['repo'] = repo def set_credentials(self, login, password): |
