diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-10-27 19:06:03 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-10-27 19:06:03 +0200 |
commit | ec97ed84d114ef131fa98acee4ce7be32f8c591f (patch) | |
tree | 975bb76c70c4611cacc610c8ef5bdb8958456948 /doc/tutorial.rst | |
parent | 1019d4cf68d1acdbb4d6c1abb7e71ac9c0f581af (diff) | |
download | gitpython-0.2.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=en0.2
Diffstat (limited to 'doc/tutorial.rst')
-rw-r--r-- | doc/tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 37dd8d32..a8e696b4 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -31,7 +31,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:: |