Version is similar as in the docs.
\n(venv) a@a:~/Workspace/git_test$ pip freeze | grep Git\nGitPython==3.1.1\n
Is that incorrect docs or bug in the library?
","upvoteCount":1,"answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Instead of r.git.blame('HEAD', 'users/utils.py')
, you could try r.blame('HEAD', 'users/utils.py')
.
I hope this helps. Please feel free to continue posting in the closed issue.
","upvoteCount":1,"url":"https://github.com/gitpython-developers/GitPython/discussions/1153#discussioncomment-408805"}}}-
Version 3.1.1 The docs says it will be list type of return value: https://gitpython.readthedocs.io/en/stable/reference.html?highlight=blame#git.repo.base.Repo.blame But instead of it i've got a string:
Version is similar as in the docs.
Is that incorrect docs or bug in the library? |
Beta Was this translation helpful? Give feedback.
-
Instead of I hope this helps. Please feel free to continue posting in the closed issue. |
Beta Was this translation helpful? Give feedback.
Instead of
r.git.blame('HEAD', 'users/utils.py')
, you could tryr.blame('HEAD', 'users/utils.py')
.I hope this helps. Please feel free to continue posting in the closed issue.