I'm having a problem importing classes into my python. It works partially such as I can load the DB class/module and the other class/module but in the other I can not load the IRC module back into it. I want top know how I would be able to do so D:
This is what I currently get
AttributeError: 'module' object has no attribute 'irc'
But, the irc module has a class called irc which I loaded in my main python file all:
ircHandle = irc.irc() which works. But, in the other module it will not work.
This is what I currently get
AttributeError: 'module' object has no attribute 'irc'
But, the irc module has a class called irc which I loaded in my main python file all:
ircHandle = irc.irc() which works. But, in the other module it will not work.