diff options
author | Michael Trier <mtrier@gmail.com> | 2008-07-17 17:22:01 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-07-17 17:22:01 -0400 |
commit | c04c60f12d3684ecf961509d1b8db895e6f9aac0 (patch) | |
tree | 464108d7ba000759bb0b75523cde6d0125d1d6d8 /doc | |
parent | 564db4f20bd7189a50a12d612d56ed6391081e83 (diff) | |
download | gitpython-c04c60f12d3684ecf961509d1b8db895e6f9aac0.tar.gz |
Removed method_missing since it was only used in one place.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tutorial.txt | 2 |
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. |