Skip to content

Commit

Permalink
changed URL order to reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
o-smirnov committed Oct 29, 2020
1 parent f096c5f commit e8ca093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radiopadre_client/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ def run_radiopadre_server(command, arguments, notebook_path, workdir=None):
for nb in LOAD_NOTEBOOK]

if not config.NBCONVERT:
for url in urls[::-1]:
message(ff("Browse to URL: {url}"), color="GREEN")
if config.CARTA_BROWSER:
url = ff("http://localhost:{iglesia.CARTA_PORT}/?socketUrl=ws://localhost:{iglesia.CARTA_WS_PORT}")
message(ff("Browse to URL: {url} (CARTA file browser)"), color="GREEN")
urls.append(url)
for url in urls:
message(ff("Browse to URL: {url}"), color="GREEN")


# now we're ready to start the session
Expand Down

0 comments on commit e8ca093

Please sign in to comment.