Skip to content

Commit

Permalink
config_manage.py - improve default value formatting in RST.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Dec 7, 2017
1 parent 146dfd2 commit 7246613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/config_manage.py
Expand Up @@ -302,7 +302,7 @@ def _write_option_rst(args, rst, key, heading_level, option_value):
rst.write("\n")
type = option.get("type", None)
default = option.get("default", "*null*")
rst.write(":Default: %s\n" % default)
rst.write(":Default: ``%s``\n" % default)
if type:
rst.write(":Type: %s\n" % type)
rst.write("\n\n")
Expand Down

0 comments on commit 7246613

Please sign in to comment.