Default to nested for outputter of ''

Fixes #20077
This commit is contained in:
Colton Myers 2015-01-26 15:14:59 -07:00
parent 62250b68dc
commit da6d25e13c

View File

@ -131,7 +131,7 @@ def get_printout(out, opts=None, **kwargs):
if out == 'text':
out = 'txt'
if out is None:
if out is None or out == '':
out = 'nested'
if opts.get('progress', False):
out = 'progress'