I do see one problem there...

if __name__ == 'main':
    t = nBaseTest('nBaseTest')
    t.logon()

That should be:

if __name__ == "__main__":
    t = nBaseTest('nBaseTest')
    t.logon()

It should be like that in both files.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to