Any idea why I get this behavior? Traceback (most recent call last): File "./bin/gv-dbupdate", line 62, in <module> schedds = coll.locateAll(htcondor.DaemonType.Schedd) AttributeError: module 'htcondor' has no attribute 'DaemonType'
The `htcondor` module had `DaemonTypes`. The `htcondor2` module has both `DaemonType` and `DaemonTypes`, the latter so that you can `import htcondor2 as htcondor` and have to change fewer things.
-- ToddM