diff options
author | Kian Cross <kian@kiancross.co.uk> | 2020-07-13 15:45:55 +0100 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-07-13 22:55:29 +0800 |
commit | 30387f16920f69544fcc7db40dfae554bcd7d1cc (patch) | |
tree | 93012b9f2780edf7201d5ff20deec2e083837cbd /git/objects/submodule/base.py | |
parent | 9b68361c8b81b23be477b485e2738844e0832b2f (diff) | |
download | gitpython-30387f16920f69544fcc7db40dfae554bcd7d1cc.tar.gz |
Fixed all warnings in documentation and updated Makefile to treat warnings as errors.
Diffstat (limited to 'git/objects/submodule/base.py')
-rw-r--r-- | git/objects/submodule/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index 722d341c..ef8dd1a9 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -965,7 +965,7 @@ class Submodule(IndexObject, Iterable, Traversable): @unbare_repo def config_writer(self, index=None, write=True): """:return: a config writer instance allowing you to read and write the data - belonging to this submodule into the .gitmodules file. + belonging to this submodule into the .gitmodules file. :param index: if not None, an IndexFile instance which should be written. defaults to the index of the Submodule's parent repository. |