Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
northwestwitch committed Mar 11, 2019
1 parent b06870c commit b6b9346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scout/server/blueprints/dashboard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def index():
institute_id = request.args.get('institute')
slice_query = request.args.get('query')

if not institute_id or not institute_id='None' or not institute_id in accessible_institutes:
if not institute_id or not institute_id=='None' or not institute_id in accessible_institutes:
institute_id = accessible_institutes[0]

LOG.info("Fetch all cases with institute: %s", institute_id)
Expand Down

0 comments on commit b6b9346

Please sign in to comment.