fixed typo in previous commit

This commit is contained in:
Massimo Di Pierro
2012-05-07 17:36:10 -05:00
parent 3222d1325a
commit 934e403fae
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-05-07 15:26:56) dev
Version 1.99.7 (2012-05-07 17:35:40) dev
+2 -2
View File
@@ -4674,9 +4674,9 @@ class MongoDBAdapter(NoSQLAdapter):
withId=False
tablename, mongoqry_dict , mongofields_dict, mongosort_list, limitby_limit, limitby_skip = self._select(query,fields,attributes)
for key in mongofields_dict.keys():
if key == 'id'
if key == 'id':
withId = True
break;
break
try:
print "mongoqry_dict=%s" % mongoqry_dict
except: