From e79ca6c1f5475a360248a63b8f4f94a45a8cfb18 Mon Sep 17 00:00:00 2001 From: Tlams Date: Thu, 8 Feb 2018 16:11:12 +0000 Subject: [PATCH] Fix stupid syntax --- code/scripts/main/core/modules/mod_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/scripts/main/core/modules/mod_database.py b/code/scripts/main/core/modules/mod_database.py index f59058b..3b026a1 100644 --- a/code/scripts/main/core/modules/mod_database.py +++ b/code/scripts/main/core/modules/mod_database.py @@ -143,7 +143,7 @@ class MongoDB: self.db[self.collection_clusters].remove({"cluster": str(cluster)}) result = { "result": "OK", - "value": "{0} {1}".format(cluster, "has been deleted") + "value": "{0} has been deleted".format(cluster) } except BaseException as e: result = {