Skip to content

Commit

Permalink
Remove comma from root controller config dict
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 9, 2017
1 parent 7961dcc commit f600a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/root.py
Expand Up @@ -57,7 +57,7 @@ def _get_extended_config(self, trans):
'toolbox' : app.toolbox.to_dict(trans, in_panel=False),
'toolbox_in_panel' : app.toolbox.to_dict(trans),
'message_box_visible' : app.config.message_box_visible,
'show_inactivity_warning' : app.config.user_activation_on and trans.user and not trans.user.active,
'show_inactivity_warning' : app.config.user_activation_on and trans.user and not trans.user.active
}

# TODO: move to user
Expand Down

0 comments on commit f600a1d

Please sign in to comment.