--> --> -->
 
 
<type 'exceptions.ValueError'>
Python 2.7.9: /usr/bin/python
Sat Dec 2 22:43:12 2023

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /var/www/obc/cgi-bin/bn/handleqtupload.py in ()
     19 sessioncr = os.popen(cmd)
     20 sd = sessioncr.readline()
=>   21 sid, sdir = sd.split()
     22 sesdir = sessiondir + "/" + sdir
     23 os.mkdir(sesdir)
sid undefined, sdir undefined, sd = '', sd.split = <built-in method split of str object>

<type 'exceptions.ValueError'>: need more than 0 values to unpack
      args = ('need more than 0 values to unpack',)
      message = 'need more than 0 values to unpack'