From 397238b404a66ba25aec1e4d7902e16104eddefc Mon Sep 17 00:00:00 2001 From: David Medina Date: Thu, 1 Mar 2012 13:12:00 +0100 Subject: Restructure modules and packages in a clean way The docs has increased lines of code, so I split it --- pygithub3/github.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pygithub3/github.py') diff --git a/pygithub3/github.py b/pygithub3/github.py index d05f069..5b5353d 100644 --- a/pygithub3/github.py +++ b/pygithub3/github.py @@ -2,7 +2,7 @@ # -*- encoding: utf-8 -*- from pygithub3.services.users import User -from pygithub3.services.repos import Repo +from pygithub3.services.repos import Repos class Github(object): @@ -17,7 +17,7 @@ class Github(object): def __init__(self, **config): self._users = User(**config) - self._repos = Repo(**config) + self._repos = Repos(**config) @property def users(self): -- cgit v1.2.3-59-g8ed1b