And when calling the onefile in a way that makes it available to find the ui-file, it throws an error, too:
http://paste.pocoo.org/show/110190/ A little example for that: #!/usr/bin/env python import sys from PyQt4 import QtGui, uic class MainWindow(QtGui.QMainWindow): def __init__(self, uifile='browser.ui', parent=None): super(MainWindow, self).__init__(parent) uic.loadUi(uifile, self) if __name__ == '__main__': app = QtGui.QApplication(sys.argv) window = MainWindow() window.show() app.exec_() --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
