don't override the object type/variable

This commit is contained in:
Bryan Bishop
2013-09-12 01:09:34 -05:00
parent 510bb1c3d9
commit fff6a7154c

View File

@@ -7153,8 +7153,8 @@ class Label:
"""
Generates a label name based on parents and self.object.
"""
object = self.object
name = object.make_label()
obj = self.object
name = obj.make_label()
return name
def find_labels_without_addresses():