Only output the code to alias properties if the names aren't the same.
diff --git a/Mac/scripts/gensuitemodule.py b/Mac/scripts/gensuitemodule.py
index 689aeaa..b68def7 100644
--- a/Mac/scripts/gensuitemodule.py
+++ b/Mac/scripts/gensuitemodule.py
@@ -670,6 +670,8 @@
if self.namemappers[0].hascode('property', code):
# plural forms and such
othername, dummy, dummy = self.namemappers[0].findcodename('property', code)
+ if pname == othername:
+ return
if self.fp:
self.fp.write("\n%s = %s\n"%(pname, othername))
else: