diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 12:40:07 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 12:40:07 +0100 |
commit | b54b9399920375f0bab14ff8495c0ea3f5fa1c33 (patch) | |
tree | 299f314cef43341964d74a67943512b1aed88028 /git/index | |
parent | d565a874f29701531ce1fc0779592838040d3edf (diff) | |
download | gitpython-b54b9399920375f0bab14ff8495c0ea3f5fa1c33.tar.gz |
Overhauled all tutorials, and placed them in a unit-test.
That way they are protected from regression.
Fixes #239
Diffstat (limited to 'git/index')
-rw-r--r-- | git/index/typ.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/index/typ.py b/git/index/typ.py index 0998ecb0..70f56dd1 100644 --- a/git/index/typ.py +++ b/git/index/typ.py @@ -32,7 +32,8 @@ class BlobFilter(object): __slots__ = 'paths' def __init__(self, paths): - """:param paths: + """ + :param paths: tuple or list of paths which are either pointing to directories or to files relative to the current repository """ |