Fix inconsistent newlines.

LF newlines have been changed to CR LF to match the rest of the file.
pull/2114/head
Wojciech Matyjewicz 2018-09-01 10:11:59 +02:00
parent a872e7d908
commit 7004066532
1 changed files with 2 additions and 2 deletions

View File

@ -124,8 +124,8 @@ def _init(self, target = None, parent = None):
except:
uni = str(obj.data, errors='ignore')
target.name = str( uni )
target.__class__.__repr__ = lambda x: str(x.__class__) + "(" + getattr(x, 'name','') + ")"
target.__class__.__str__ = lambda x: getattr(x, 'name', '')
target.__class__.__repr__ = lambda x: str(x.__class__) + "(" + getattr(x, 'name','') + ")"
target.__class__.__str__ = lambda x: getattr(x, 'name', '')
continue
name = m[1:].lower()