mercurial/hg.py
changeset 49701 1470a533d28a
parent 49693 c4731eee1c8f
child 49707 aa36771ef505
equal deleted inserted replaced
49700:e3b997f57269 49701:1470a533d28a
  1378 
  1378 
  1379 def _outgoing(ui, repo, dests, opts, subpath=None):
  1379 def _outgoing(ui, repo, dests, opts, subpath=None):
  1380     out = set()
  1380     out = set()
  1381     others = []
  1381     others = []
  1382     for path in urlutil.get_push_paths(repo, ui, dests):
  1382     for path in urlutil.get_push_paths(repo, ui, dests):
  1383         dest = path.pushloc or path.loc
  1383         dest = path.loc
  1384         if subpath is not None:
  1384         if subpath is not None:
  1385             subpath = urlutil.url(subpath)
  1385             subpath = urlutil.url(subpath)
  1386             if subpath.isabs():
  1386             if subpath.isabs():
  1387                 dest = bytes(subpath)
  1387                 dest = bytes(subpath)
  1388             else:
  1388             else: