have got following python script
import dbus.service
import gobject
import yum
def main():
print "in main"
if __name__ == "__main__":
main()
The exit status is 0 when script is executed. But every time it outputs following exception
Exception AttributeError: "'NoneType' object has no attribute 'px_proxy_factory_free'" in <bound method ProxyFactory.__del__ of <libproxy.ProxyFactory object at 0xa081dec>> ignored
Can somebody point me what is the reason ?
python -m pdb myscript.py? – Adam Wagner Oct 4 '11 at 12:22yumwhich happens either during its initialization at import time or during its shutdown if it registers an exit hook. – 9000 Oct 4 '11 at 12:44