##// END OF EJS Templates
py3: use '%d' for integers instead of '%s'...
Pulkit Goyal -
r34507:1d804c22 default
parent child Browse files
Show More
@@ -515,7 +515,7 b' def _xmerge(repo, mynode, orig, fcd, fco'
515 (tool, fcd.path()))
515 (tool, fcd.path()))
516 repo.ui.debug('launching merge tool: %s\n' % cmd)
516 repo.ui.debug('launching merge tool: %s\n' % cmd)
517 r = ui.system(cmd, cwd=repo.root, environ=env, blockedtag='mergetool')
517 r = ui.system(cmd, cwd=repo.root, environ=env, blockedtag='mergetool')
518 repo.ui.debug('merge tool returned: %s\n' % r)
518 repo.ui.debug('merge tool returned: %d\n' % r)
519 return True, r, False
519 return True, r, False
520 finally:
520 finally:
521 util.unlink(b)
521 util.unlink(b)
@@ -457,7 +457,7 b' def b85diff(to, tn):'
457 # TODO: deltas
457 # TODO: deltas
458 ret = []
458 ret = []
459 ret.append('GIT binary patch\n')
459 ret.append('GIT binary patch\n')
460 ret.append('literal %s\n' % len(tn))
460 ret.append('literal %d\n' % len(tn))
461 for l in chunk(zlib.compress(tn)):
461 for l in chunk(zlib.compress(tn)):
462 ret.append(fmtline(l))
462 ret.append(fmtline(l))
463 ret.append('\n')
463 ret.append('\n')
General Comments 0
You need to be logged in to leave comments. Login now