diff options
author | Syoc <Syoc@users.noreply.github.com> | 2019-01-09 11:57:17 +0000 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2019-01-12 09:11:54 +0100 |
commit | 7a6ca8c40433400f6bb3ece2ed30808316de5be3 (patch) | |
tree | ae2a54e77b50c29e1a31ced3d67e1d5ce9bbba87 /git/diff.py | |
parent | 8b3ffcdda1114ad204c58bdf3457ac076ae9a0b0 (diff) | |
download | gitpython-7a6ca8c40433400f6bb3ece2ed30808316de5be3.tar.gz |
Fixed error in documentation
The renamed_file function contains the following which ends up on readthedocs:
:note: This property is deprecated, please use ``renamed_file`` instead.
Removed the line
Diffstat (limited to 'git/diff.py')
-rw-r--r-- | git/diff.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git/diff.py b/git/diff.py index c7300127..10cb9f02 100644 --- a/git/diff.py +++ b/git/diff.py @@ -384,7 +384,6 @@ class Diff(object): @property def renamed_file(self): """:returns: True if the blob of our diff has been renamed - :note: This property is deprecated, please use ``renamed_file`` instead. """ return self.rename_from != self.rename_to |