##// END OF EJS Templates
patch: readgitpatch: remove unused variable 'src'
Nicolas Dumazet -
r9392:039bce1b default
parent child Browse files
Show More
@@ -188,7 +188,7 b' def readgitpatch(lr):'
188 if m:
188 if m:
189 if gp:
189 if gp:
190 gitpatches.append(gp)
190 gitpatches.append(gp)
191 src, dst = m.group(1, 2)
191 dst = m.group(2)
192 gp = patchmeta(dst)
192 gp = patchmeta(dst)
193 gp.lineno = lineno
193 gp.lineno = lineno
194 elif gp:
194 elif gp:
General Comments 0
You need to be logged in to leave comments. Login now