Skip to content

Commit

Permalink
Typo in web handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
WaferMouse committed Mar 14, 2021
1 parent af7d127 commit c5336bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_station_url(system_name, station_name, provider = None, market_id = None
provider = config.get('station_provider')
if provider == 'eddb':
if market_id:
return 'https://eddb.io/station/market-id/' + urllib.parse.quote_plus(str(market_id))
return('https://eddb.io/station/market-id/' + urllib.parse.quote_plus(str(market_id)))
else:
return(get_system_url(system_name, provider = 'eddb'))
elif provider == 'Inara':
Expand Down

0 comments on commit c5336bf

Please sign in to comment.