summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-07-17 17:22:01 -0400
committerMichael Trier <mtrier@gmail.com>2008-07-17 17:22:01 -0400
commitc04c60f12d3684ecf961509d1b8db895e6f9aac0 (patch)
tree464108d7ba000759bb0b75523cde6d0125d1d6d8 /doc
parent564db4f20bd7189a50a12d612d56ed6391081e83 (diff)
downloadgitpython-c04c60f12d3684ecf961509d1b8db895e6f9aac0.tar.gz
Removed method_missing since it was only used in one place.
Diffstat (limited to 'doc')
-rw-r--r--doc/tutorial.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.txt b/doc/tutorial.txt
index 92ed3cdc..5ad56129 100644
--- a/doc/tutorial.txt
+++ b/doc/tutorial.txt
@@ -184,7 +184,7 @@ What Else?
There is more stuff in there, like the ability to tar or gzip repos, stats,
log, blame, and probably a few other things. Additionally calls to the git
-instance are handled through a ``method_missing`` construct, which makes
+instance are handled through a ``__getattr__`` construct, which makes
available any git commands directly, with a nice conversion of Python dicts
to command line parameters.