From 483158c3715ed17e9a4ccccb63fabde6d75587d7 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 23 Dec 2014 09:07:33 +0100 Subject: [PATCH] Minor style update --- lib/utils/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/api.py b/lib/utils/api.py index b79159472..5ff22432d 100644 --- a/lib/utils/api.py +++ b/lib/utils/api.py @@ -323,7 +323,7 @@ def task_new(): taskid = hexencode(os.urandom(8)) DataStore.tasks[taskid] = Task(taskid) - logger.debug(" [%s] Created new task" % taskid) + logger.debug("Created new task: '%s'" % taskid) return jsonize({"success": True, "taskid": taskid})