diff options
-rw-r--r-- | doc/doc_index/0.2/tutorial.html | 2 | ||||
-rw-r--r-- | 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 @@ <p>Query the active branch, query untracked files or whether the repository data has been modified:</p> <div class="highlight-python"><div class="highlight"><pre><span class="n">repo</span><span class="o">.</span><span class="n">is_dirty</span><span class="p">()</span> <span class="bp">False</span> -<span class="n">repo</span><span class="o">.</span><span class="n">untracked_files</span><span class="p">()</span> +<span class="n">repo</span><span class="o">.</span><span class="n">untracked_files</span> <span class="p">[</span><span class="s">'my_untracked_file'</span><span class="p">]</span> </pre></div> </div> 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:: |