Skip to content

Commit

Permalink
simplified
Browse files Browse the repository at this point in the history
  • Loading branch information
omichel committed May 7, 2020
1 parent b3306d6 commit 2eff2d0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions resources/web/server/simulation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,8 @@ def on_message(self, message):
client.streaming_server_port))
elif 'start' in data: # checkout a github folder and run a simulation in there
client.streaming_server_port = ClientWebSocketHandler.next_available_port()
url = data['start']['url']
logging.info('Starting simulation from ' + url)
client.url = url
client.url = data['start']['url']
logging.info('Starting simulation from ' + client.url)
self.start_client()

def on_webots_quit(self):
Expand Down

0 comments on commit 2eff2d0

Please sign in to comment.