summaryrefslogtreecommitdiff
path: root/doc/source/tutorial.rst
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-10-27 19:04:09 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-10-27 20:17:32 +0200
commit97ab197140b16027975c7465a5e8786e6cc8fea1 (patch)
tree18ce31d0e6b3a4fb5ce34ea436c4a18581682898 /doc/source/tutorial.rst
parent8858a63cb33319f3e739edcbfafdae3ec0fefa33 (diff)
downloadgitpython-97ab197140b16027975c7465a5e8786e6cc8fea1.tar.gz
docs: untracked_files is a property, but was used like a function, see http://groups.google.com/group/git-python/browse_thread/thread/84ed1835e26a5296?hl=en
Diffstat (limited to 'doc/source/tutorial.rst')
-rw-r--r--doc/source/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst
index 033bbad4..72ddb1ca 100644
--- a/doc/source/tutorial.rst
+++ b/doc/source/tutorial.rst
@@ -33,7 +33,7 @@ Query the active branch, query untracked files or whether the repository data h
repo.is_dirty()
False
- repo.untracked_files()
+ repo.untracked_files
['my_untracked_file']
Clone from existing repositories or initialize new empty ones::