You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Affected Version:
newest
Environment:
mac osx 10.10
git 1.9
steps reproduce the problem:
execute command repo sync -j4 in terminal.app
expected:
no exception
actual:
/.repo/repo/git_refs.py", line 120, in _ReadPackedRefs name = p[1] IndexError:
list index out of range
fixed step:
change 119:125 to
119 if len(p)> 1:
120 ref_id = p[0]
121 name = p[1]//out of index exception here!!!
122
123 self._phyref[name] = ref_id
124 else:
125 print 'error ref path: {0}'.format( path)
Original issue reported on code.google.com by [email protected] on 9 Nov 2014 at 2:24
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 9 Nov 2014 at 2:24The text was updated successfully, but these errors were encountered: