Skip to content

Commit

Permalink
Split urls in status message
Browse files Browse the repository at this point in the history
  • Loading branch information
edyan committed Dec 27, 2019
1 parent 5a2afff commit 457eda0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stakkr/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ def get_url(self, service_url: str, service: str):
elif os_name() in ['Windows', 'Darwin']:
puts(colored.yellow('[WARNING]') + ' Under Win and Mac, you need the proxy enabled')

return service_url.format(url)
urls = [service_url.format(url) for url in url.split(',')]

return ' / '.join(urls)


def _get_single_container_option(container: str):
Expand Down

0 comments on commit 457eda0

Please sign in to comment.