Skip to content

Commit

Permalink
New status fixes and refactoring for automatic splitting (dmwm#4635)
Browse files Browse the repository at this point in the history
* New status fixes and refactoring for automatic splitting

* Fix sort order in status2 --long

* Take care of Emilis review comments
  • Loading branch information
mmascher committed Sep 2, 2016
1 parent 78d38f6 commit 74319ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/CRABClient/Commands/status2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 74319ec

Please sign in to comment.