equal
deleted
inserted
replaced
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: |