Merge pull request #20084 from basepi/outputtererror20077

Default to nested for outputter of '' [2015.2]
This commit is contained in:
Colton Myers 2015-01-26 15:26:37 -07:00
commit 1371f4be6f

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'