##// END OF EJS Templates
streamclone: move "streaming all changes" message location...
Gregory Szorc -
r26470:4b5647d9 default
parent child Browse files
Show More
@@ -113,6 +113,8 b' def maybeperformlegacystreamclone(pullop'
113 if remote.capable('branchmap'):
113 if remote.capable('branchmap'):
114 rbranchmap = remote.branchmap()
114 rbranchmap = remote.branchmap()
115
115
116 repo.ui.status(_('streaming all changes\n'))
117
116 fp = remote.stream_out()
118 fp = remote.stream_out()
117 l = fp.readline()
119 l = fp.readline()
118 try:
120 try:
@@ -245,7 +247,6 b' def consumev1(repo, fp, filecount, bytec'
245 """
247 """
246 lock = repo.lock()
248 lock = repo.lock()
247 try:
249 try:
248 repo.ui.status(_('streaming all changes\n'))
249 repo.ui.status(_('%d files to transfer, %s of data\n') %
250 repo.ui.status(_('%d files to transfer, %s of data\n') %
250 (filecount, util.bytecount(bytecount)))
251 (filecount, util.bytecount(bytecount)))
251 handled_bytes = 0
252 handled_bytes = 0
General Comments 0
You need to be logged in to leave comments. Login now