Comments
Patch
@@ -1072,9 +1072,9 @@ def storestatus(repo, originalwd, target
f.write(repo[originalwd].hex() + '\n')
f.write(repo[target].hex() + '\n')
f.write(repo[external].hex() + '\n')
- f.write('%d\n' % int(collapse))
- f.write('%d\n' % int(keep))
- f.write('%d\n' % int(keepbranches))
+ f.write('%d\n' % int(bool(collapse)))
+ f.write('%d\n' % int(bool(keep)))
+ f.write('%d\n' % int(bool(keepbranches)))
f.write('%s\n' % (activebookmark or ''))
for d, v in state.iteritems():
oldrev = repo[d].hex()