I am not much of a Python jockey, but if your generated pyuic4 output is in file Ui_integrator.py then
Qt Code:
  1. from Ui_integrator import Ui_integrator
To copy to clipboard, switch view to plain text mode 
seems closer to the mark. The first Ui_integrator (module name) gets mapped to the file Ui_integrator.py, and the second Ui_integrator is the name of the symbol (class in this case) to import.