aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2015-03-06 16:13:26 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2015-03-06 16:13:26 +0100
commit3b68aa77f9f43a76f119b7b867f83ef1b52f6624 (patch)
tree492b21d1c378e9c1610b2c8e3d2993f9163c5b7c
parentb637947c2dee57083d06777890a0df30bfad136b (diff)
Another trivia change: pylint error.
-rw-r--r--app/utils/db.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/utils/db.py b/app/utils/db.py
index 14cb03f..c3da4a7 100644
--- a/app/utils/db.py
+++ b/app/utils/db.py
@@ -69,7 +69,8 @@ def find_one(collection,
:param collection: The collection where to search.
:param value: The value to search. It has to be of the appropriate type for
- the operator in use. If using the default operator `$in`, it must be a list.
+ the operator in use. If using the default operator `$in`, it must be a
+ list.
:param field: The field where the value should be searched. Defaults to
`_id`.
:param oeprator: The operator used to perform the comparison. Defaults to