diff options
author | Michael Trier <mtrier@gmail.com> | 2008-07-16 22:18:21 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-07-16 22:18:21 -0400 |
commit | bfdf98cadedfa6042117cd7a83952ca2f465d26f (patch) | |
tree | 44fa49d5ffb10bffeb628b2afeaa4092e6a50a3c /lib/git/method_missing.py | |
parent | 95a83a7de5d3ce84206b9267962c32df4d071c21 (diff) | |
download | gitpython-bfdf98cadedfa6042117cd7a83952ca2f465d26f.tar.gz |
Added license information to all files.
Diffstat (limited to 'lib/git/method_missing.py')
-rw-r--r-- | lib/git/method_missing.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/git/method_missing.py b/lib/git/method_missing.py index 06414cc4..250fcc6d 100644 --- a/lib/git/method_missing.py +++ b/lib/git/method_missing.py @@ -1,8 +1,16 @@ +# method_missing.py +# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Portions derived from http://blog.iffy.us/?p=43 +# +# This module is part of GitPython and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php + class MethodMissingMixin(object): """ A Mixin' to implement the 'method_missing' Ruby-like protocol. - This was `taken from a blog post <http://blog.iffy.us/?p=43>`_ + Ideas were `taken from the following blog post + <http://blog.iffy.us/?p=43>`_ """ def __getattr__(self, attr): class MethodMissing(object): |