소스 검색

Change sorting statement back...

ogert 5 년 전
부모
커밋
125f105bb4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cdplib/db_handlers/MongodbHandler.py

+ 1 - 1
cdplib/db_handlers/MongodbHandler.py

@@ -446,7 +446,7 @@ class MongodbHandler:
             if attribute == None or attribute_value == None:
                 data = self._database[collection_name].find({},{'_id': return_id}).sort(sort_label, direction).limit(limit)
             else:
-                data = self._database[collection_name].find({attribute: {comparison_operator: attribute_value}}, {'_id': return_id}).sort({sort_label: direction}).limit(limit)
+                data = self._database[collection_name].find({attribute: {comparison_operator: attribute_value}}, {'_id': return_id}).sort(sort_label, direction).limit(limit)
 
             if len(list(data)) == 0:
                 self._log.warning('No data was found for the query')