Indent the text wrap lines hanging

This commit is contained in:
Monty Taylor 2014-07-26 11:26:15 -07:00
parent 72c193e5e9
commit a3a1d478a3
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Runner(object):
def _indent(self, text):
wrapper = textwrap.TextWrapper(
initial_indent=' ', subsequent_indent=' ')
initial_indent=' ', subsequent_indent=' ')
return '\n'.join([wrapper.fill(line) for line in text.split('\n')])
def _get_image_list(self):