浏览代码

Bug Fix wrong variable name in __process_filters method in the mongodb datasource

Roland Haroutiounian 8 年前
父节点
当前提交
53bf344d40
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      plugins/mongodb_datasource/datasource.py

+ 1
- 1
plugins/mongodb_datasource/datasource.py 查看文件

@@ -359,7 +359,7 @@ class MongoDbDatasource(object):
359 359
             if '$in' in res[fname]:
360 360
                 #WARNING we allready have a IN on this field, doing dedup
361 361
                 #from result
362
-                deduped = set(res[fname]['$in']) & subq
362
+                deduped = set(res[fname]['$in']) & subq_results
363 363
                 if len(deduped) == 0:
364 364
                     del(res[fname]['$in'])
365 365
                 else:

正在加载...
取消
保存