Show More
@@ -197,8 +197,10 b' def formatter(ui, topic, opts):' | |||||
197 | return debugformatter(ui, topic, opts) |
|
197 | return debugformatter(ui, topic, opts) | |
198 | elif template != "": |
|
198 | elif template != "": | |
199 | return templateformatter(ui, topic, opts) |
|
199 | return templateformatter(ui, topic, opts) | |
|
200 | # developer config: ui.formatdebug | |||
200 | elif ui.configbool('ui', 'formatdebug'): |
|
201 | elif ui.configbool('ui', 'formatdebug'): | |
201 | return debugformatter(ui, topic, opts) |
|
202 | return debugformatter(ui, topic, opts) | |
|
203 | # deprecated config: ui.formatjson | |||
202 | elif ui.configbool('ui', 'formatjson'): |
|
204 | elif ui.configbool('ui', 'formatjson'): | |
203 | return jsonformatter(ui, topic, opts) |
|
205 | return jsonformatter(ui, topic, opts) | |
204 | return plainformatter(ui, topic, opts) |
|
206 | return plainformatter(ui, topic, opts) |
General Comments 0
You need to be logged in to leave comments.
Login now