[SOLVED]Anyway to ignore certification warning!?

I’ve changed cerlist class like this:

class certlist(package):
    # This package holds any certificates that should be considered
    # pre-approved by the plugin vendor.  If you build and host your
    # own version of the Panda3D plugin, you can add your own
    # certificates to this list.  The certificates in this package
    # will be assumed to have been approved by the user when he/she
    # installed the plugin.

    # They should be PEM-encoded and their filenames must end in the
    # ".pem" or ".crt" extension, and they should be added with the
    # extract = True flag so they will be extracted to disk.
    file('mycert.pem', extract=True)

And then i’ve rebuilt runtime and plugin with no error, then i’ve re-installed them. finally i’ve used new packp3d with mycert.pem to produce my pack, but it is still asking for certification approval. maybe i’ve put mycert.pem in the wrong place.