Fix over-indentation of wrapped code

This commit is contained in:
Jack Wilsdon 2016-05-01 21:30:20 +01:00
parent 576ec92992
commit b4715d61e1

View file

@ -96,7 +96,7 @@ class CodingFormatter(AutoFieldCountFormatter):
def convert_field(self, value, conversion):
converted = super(CodingFormatter, self).convert_field(value,
conversion)
conversion)
try:
converted = converted.decode(self._coding)
except UnicodeEncodeError: