diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-07 17:43:36 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-07 17:43:36 +0200 |
commit | ca288d443f4fc9d790eecb6e1cdf82b6cdd8dc0d (patch) | |
tree | 647089e9f091411c69ff4ee62747c53606671485 /lib/git/remote.py | |
parent | a4287f65878000b42d11704692f9ea3734014b4c (diff) | |
parent | 01ab5b96e68657892695c99a93ef909165456689 (diff) | |
download | gitpython-ca288d443f4fc9d790eecb6e1cdf82b6cdd8dc0d.tar.gz |
Merge branch 'revparse'
Diffstat (limited to 'lib/git/remote.py')
-rw-r--r-- | lib/git/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/remote.py b/lib/git/remote.py index 1598e55a..801dcd62 100644 --- a/lib/git/remote.py +++ b/lib/git/remote.py @@ -391,7 +391,7 @@ class FetchInfo(object): split_token = '...' if control_character == ' ': split_token = split_token[:-1] - old_commit = Commit.new(repo, operation.split(split_token)[0]) + old_commit = repo.rev_parse(operation.split(split_token)[0]) # END handle refspec # END reference flag handling |