diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-29 12:10:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-29 12:10:56 +0200 |
commit | 6917ae4ce9eaa0f5ea91592988c1ea830626ac3a (patch) | |
tree | 75f0f55477a70f52eeb72512116ca143cea2f4ec /lib/git/remote.py | |
parent | f1401803ccf7db5d897a5ef4b27e2176627c430e (diff) | |
download | gitpython-6917ae4ce9eaa0f5ea91592988c1ea830626ac3a.tar.gz |
Diff: fixed bug that caused a string to end up as a blob mode
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 94bd285b..9c46a027 100644 --- a/lib/git/remote.py +++ b/lib/git/remote.py @@ -384,7 +384,7 @@ class FetchInfo(object): split_token = '...' if control_character == ' ': split_token = split_token[:-1] - old_commit = Commit(repo, operation.split(split_token)[0]) + old_commit = Commit.new(repo, operation.split(split_token)[0]) # END handle refspec # END reference flag handling |