From 74319ec3b02395a5b9d6b130f0e48decd9e77adb Mon Sep 17 00:00:00 2001 From: Marco Mascheroni Date: Fri, 22 Jul 2016 12:01:57 +0200 Subject: [PATCH] New status fixes and refactoring for automatic splitting (#4635) * New status fixes and refactoring for automatic splitting * Fix sort order in status2 --long * Take care of Emilis review comments --- src/python/CRABClient/Commands/status2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/CRABClient/Commands/status2.py b/src/python/CRABClient/Commands/status2.py index da0db2e11..6e9655025 100644 --- a/src/python/CRABClient/Commands/status2.py +++ b/src/python/CRABClient/Commands/status2.py @@ -32,8 +32,8 @@ class status2(SubCommand): def getColumn(self, dictresult, columnName): columnIndex = dictresult['desc']['columns'].index(columnName) - webdir = dictresult['result'][columnIndex] - return webdir + value = dictresult['result'][columnIndex] + return value def __call__(self): # Get all of the columns from the database for a certain task