cannot import name .....

Matimus mccredie at gmail.com
Thu May 3 17:46:19 EDT 2007


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.




More information about the Python-list mailing list