From e8980057ccfcaca34b423804222a9f981350ac67 Mon Sep 17 00:00:00 2001 From: Marios Zindilis Date: Fri, 13 Jun 2014 00:16:50 +0300 Subject: [PATCH 1/2] Changed link to PyPI --- doc/source/intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 520cf159a..8dac28047 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -47,7 +47,7 @@ here: * `setuptools`_ * `install setuptools `_ -* `pypi `_ +* `pypi `_ .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools From eb53329253f8ec1d0eff83037ce70260b6d8fcce Mon Sep 17 00:00:00 2001 From: Marios Zindilis Date: Fri, 13 Jun 2014 00:51:04 +0300 Subject: [PATCH 2/2] Fixed two minor typos. --- git/repo/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/repo/base.py b/git/repo/base.py index 8191b3057..71492fe87 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -56,13 +56,13 @@ class Repo(object): The following attributes are worth using: - 'working_dir' is the working directory of the git command, wich is the working tree + 'working_dir' is the working directory of the git command, which is the working tree directory if available or the .git directory in case of bare repositories 'working_tree_dir' is the working tree directory, but will raise AssertionError if we are a bare repository. - 'git_dir' is the .git repository directoy, which is always set.""" + 'git_dir' is the .git repository directory, which is always set.""" DAEMON_EXPORT_FILE = 'git-daemon-export-ok' __slots__ = ( "working_dir", "_working_tree_dir", "git_dir", "_bare", "git", "odb" )