Skip to content
Snippets Groups Projects
Commit bcd927be authored by Wainer Vandelli's avatar Wainer Vandelli
Browse files

Fix import and return integer file size

parent 5c584176
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
__version__='$Revision$'
import logging
from subprocess import *
#### Set Log severity level #####
def set_log_level(level, logger):
......@@ -68,7 +69,7 @@ def castorinfo(castorfile, castorenv, logger):
try:
splitted = nslsOut.split()
size = splitted[4]
size = int(splitted[4])
id = splitted.index('AD')
checksum = nslsOut.split()[id+1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment