##// END OF EJS Templates
formatter: mark developer options
Matt Mackall -
r25838:31137258 default
parent child Browse files
Show More
@@ -197,8 +197,10 b' def formatter(ui, topic, opts):'
197 197 return debugformatter(ui, topic, opts)
198 198 elif template != "":
199 199 return templateformatter(ui, topic, opts)
200 # developer config: ui.formatdebug
200 201 elif ui.configbool('ui', 'formatdebug'):
201 202 return debugformatter(ui, topic, opts)
203 # deprecated config: ui.formatjson
202 204 elif ui.configbool('ui', 'formatjson'):
203 205 return jsonformatter(ui, topic, opts)
204 206 return plainformatter(ui, topic, opts)
General Comments 0
You need to be logged in to leave comments. Login now