daboide Commit
Revision 569
Date: 2006-05-11 10:01:14 -0700 (Thu, 11 May 2006)
Author: ed
Changed:
U trunk/wizards/AppWizard/AppWizard.py
Log:
Removed the Python 2.4-specific syntax.
Diff:
Modified: trunk/wizards/AppWizard/AppWizard.py
===================================================================
--- trunk/wizards/AppWizard/AppWizard.py 2006-05-09 16:39:31 UTC (rev
568)
+++ trunk/wizards/AppWizard/AppWizard.py 2006-05-11 17:01:14 UTC (rev
569)
@@ -509,7 +509,9 @@
if not self.tableSelections:
for table in tbls:
self.tableSelections[table] = False
- self.clbTableSelection.Choices =
sorted(self.tableSelections.keys())
+ tblKeys = self.tableSelections.keys()
+ tblKeys.sort()
+ self.clbTableSelection.Choices = tblKeys
self.clbTableSelection.setFocus()
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev