From 97ab197140b16027975c7465a5e8786e6cc8fea1 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 27 Oct 2010 19:04:09 +0200 Subject: 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 --- doc/doc_index/0.2/tutorial.html | 2 +- doc/source/tutorial.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doc_index/0.2/tutorial.html b/doc/doc_index/0.2/tutorial.html index 0498e77a..82bdb106 100644 --- a/doc/doc_index/0.2/tutorial.html +++ b/doc/doc_index/0.2/tutorial.html @@ -70,7 +70,7 @@

Query the active branch, query untracked files or whether the repository data has been modified:

repo.is_dirty()
 False
-repo.untracked_files()
+repo.untracked_files
 ['my_untracked_file']
 
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:: -- cgit v1.2.3