From 81c45e0f997264f5037fc3fc8b544063d5a42a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik@tjaders.com> Date: Mon, 6 Mar 2017 14:03:57 +0100 Subject: [PATCH] Properly print contents of job --- profiling_db_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiling_db_parser.py b/profiling_db_parser.py index ee91f1b..af66036 100644 --- a/profiling_db_parser.py +++ b/profiling_db_parser.py @@ -148,7 +148,7 @@ def print_db_ktest(): c.execute('SELECT DISTINCT job FROM events WHERE (file=?)', (filename,)) job = c.fetchall() - print("Job: j%s" % job) + print("Job: %s" % job[0]) """ Go through the unique list of resources -- GitLab