comparison hg @ 88:d9913355961d

Missing newline in "requesting changegroup"
author mpm@selenic.com
date Tue, 17 May 2005 12:40:24 -0800
parents b2b3fdbd79f4
children 4cd9145d5b53
comparison
equal deleted inserted replaced
87:b2b3fdbd79f4 88:d9913355961d
342 hg.hex(e[4][:5]), hg.hex(e[5][:5]), hg.hex(e[6][:5])) 342 hg.hex(e[4][:5]), hg.hex(e[5][:5]), hg.hex(e[6][:5]))
343 343
344 elif cmd == "merge": 344 elif cmd == "merge":
345 if args: 345 if args:
346 other = hg.repository(ui, args[0]) 346 other = hg.repository(ui, args[0])
347 ui.status("requesting changegroup") 347 ui.status("requesting changegroup\n")
348 cg = repo.getchangegroup(other) 348 cg = repo.getchangegroup(other)
349 repo.addchangegroup(cg) 349 repo.addchangegroup(cg)
350 else: 350 else:
351 print "missing source repository" 351 print "missing source repository"
352 352