dabo Commit
Revision 3540
Date: 2007-10-21 13:37:11 -0700 (Sun, 21 Oct 2007)
Author: Ed
Trac: http://svn.dabodev.com/trac/dabo/changeset/3540
Changed:
U trunk/dabo/db/dbSQLite.py
Log:
Fixed a problem in determining non-update fields.
Diff:
Modified: trunk/dabo/db/dbSQLite.py
===================================================================
--- trunk/dabo/db/dbSQLite.py 2007-10-21 14:28:02 UTC (rev 3539)
+++ trunk/dabo/db/dbSQLite.py 2007-10-21 20:37:11 UTC (rev 3540)
@@ -178,7 +178,7 @@
stdFlds = [ff["name"] for ff in rs]
# Get all the fields that are not in the table.
return [d[0] for d in descFlds
- if d[0] not in [s[0] for s in stdFlds] ]
+ if d[0] not in stdFlds ]
def getUpdateTablePrefix(self, table, autoQuote=True):
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]