summaryrefslogtreecommitdiff
path: root/git/remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/remote.py')
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index 34d653e6..2eeafcc4 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -301,7 +301,7 @@ class FetchInfo(object):
return self.ref.commit
@classmethod
- def _from_line(cls, repo: Repo, line: str, fetch_line) -> 'FetchInfo':
+ def _from_line(cls, repo: 'Repo', line: str, fetch_line: str) -> 'FetchInfo':
"""Parse information from the given line as returned by git-fetch -v
and return a new FetchInfo object representing this information.