diff options
author | Michael Trier <mtrier@gmail.com> | 2010-03-20 11:45:58 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2010-03-20 11:45:58 -0400 |
commit | 7bfca5efce8988e6070e7284bd409d1a731a3fbc (patch) | |
tree | 6f44db816731fd2d698a27d1ca34e5c207eac615 /lib/git/tree.py | |
parent | e3e2c8c14b861b4d4865a9574e812ef9f2609771 (diff) | |
download | gitpython-7bfca5efce8988e6070e7284bd409d1a731a3fbc.tar.gz |
Many small doc changes pulled in from the 0.1.7RC branch.0.1.7
Diffstat (limited to 'lib/git/tree.py')
-rw-r--r-- | lib/git/tree.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/tree.py b/lib/git/tree.py index aaeca828..02266dce 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -64,9 +64,9 @@ class Tree(LazyMixin): Examples:: - >>> Repo('/path/to/python-git').tree/'lib' + >>> Repo('/path/to/python-git').tree()/'lib' <git.Tree "6cc23ee138be09ff8c28b07162720018b244e95e"> - >>> Repo('/path/to/python-git').tree/'README.txt' + >>> Repo('/path/to/python-git').tree()/'README' <git.Blob "8b1e02c0fb554eed2ce2ef737a68bb369d7527df"> Returns |