Avoid confusion between github/ and Github.py on case-insensitive file systems (#143)

This commit is contained in:
Vincent Jacques
2013-03-12 10:16:06 +01:00
parent 86fe370b97
commit a39f421ca2
6 changed files with 23 additions and 32 deletions
+2 -2
View File
@@ -14,14 +14,14 @@
# You should have received a copy of the GNU Lesser General Public License along with PyGithub. If not, see <http://www.gnu.org/licenses/>.
"""
The primary class you will instanciate is :class:`github.Github.Github`.
The primary class you will instanciate is :class:`github.MainClass.Github`.
From its ``get_``, ``create_`` methods, you will obtain instances of all Github objects
like :class:`github.NamedUser.NamedUser` or :class:`github.Repository.Repository`.
"""
import logging
from Github import Github
from MainClass import Github
from GithubException import GithubException
from InputFileContent import InputFileContent
from InputGitAuthor import InputGitAuthor