aboutsummaryrefslogtreecommitdiff
path: root/umosapi/app_db/uobject.py
diff options
context:
space:
mode:
Diffstat (limited to 'umosapi/app_db/uobject.py')
-rw-r--r--umosapi/app_db/uobject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/umosapi/app_db/uobject.py b/umosapi/app_db/uobject.py
index ebb7a9e..9830187 100644
--- a/umosapi/app_db/uobject.py
+++ b/umosapi/app_db/uobject.py
@@ -38,7 +38,7 @@ class UObject(object):
error = {"msg": "UObject _id is required", "code": 400}
elif len(list(mongo.db.uobjects.find({"_id": ObjectId(_id)}))) == 0:
error = {
- 'msg': "UObject {} not exist. So it's good.".format(_id),
+ "msg": "UObject {} not exist. So it's good.".format(_id),
"code": 404
}