[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] python3.6



I have a script that works in python2.7, but when I run it in 3.6 it
fails. The code that fails is here:

          with schedd.transaction() as txn:
              for i, submit in enumerate(submits):
                  id = submit.queue(txn)
                  id_map[id] = i
                  job_ids.append(id)

The error is on the submit.queue:

RuntimeError: transfer_output=output is invalid, must eval to a boolean.