Fix inconsistent newlines.
LF newlines have been changed to CR LF to match the rest of the file.pull/2114/head
parent
a872e7d908
commit
7004066532
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue