##// END OF EJS Templates
allow to pull from an empty repo without getting a backtrace
Vincent Danjean -
r2149:43ce1c17 default
parent child Browse files
Show More
@@ -1320,7 +1320,8 class localrepository(object):
1320 # Signal that no more groups are left.
1320 # Signal that no more groups are left.
1321 yield changegroup.closechunk()
1321 yield changegroup.closechunk()
1322
1322
1323 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1323 if nodes:
1324 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1324
1325
1325 return util.chunkbuffer(gengroup())
1326 return util.chunkbuffer(gengroup())
1326
1327
General Comments 0
You need to be logged in to leave comments. Login now