Fix repr bug in plots.py

This commit is contained in:
Paul Romano 2017-12-22 16:04:59 +07:00
parent 1a5ebc7aab
commit 12ce15978d

View file

@ -439,7 +439,7 @@ class Plot(IDManagerMixin):
string += '{: <16}=\t{}\n'.format('\tWidth', self._width)
string += '{: <16}=\t{}\n'.format('\tOrigin', self._origin)
string += '{: <16}=\t{}\n'.format('\tPixels', self._origin)
string += '{: <16}=\t{}\n'.format('\tColor by', self._color)
string += '{: <16}=\t{}\n'.format('\tColor by', self._color_by)
string += '{: <16}=\t{}\n'.format('\tBackground', self._background)
string += '{: <16}=\t{}\n'.format('\tMask components',
self._mask_components)