X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=wizard%2Fbertos.py;h=3aa845f3be666061b5e3219ccfe7226bc382bd08;hb=7713a5e329a770f53d53e39e9b3b8dae55c71614;hp=80488454120f1f044dfe004bcac91930d6b28c13;hpb=52c487b2edccff2f2eb2a9082b38f370be0e05d6;p=bertos.git diff --git a/wizard/bertos.py b/wizard/bertos.py index 80488454..3aa845f3 100755 --- a/wizard/bertos.py +++ b/wizard/bertos.py @@ -28,7 +28,6 @@ # # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # -# $Id$ # # Author: Lorenzo Berni # @@ -55,7 +54,6 @@ from BVersionPage import BVersionPage from BCpuPage import BCpuPage from BToolchainPage import BToolchainPage from BModulePage import BModulePage -from BOutputPage import BOutputPage from BCreationPage import BCreationPage from BFinalPage import BFinalPage @@ -67,7 +65,7 @@ from LoadException import VersionException, ToolchainException def newProject(): QApplication.instance().project = BProject() - page_list = [BIntroPage, BFolderPage, BVersionPage, BBoardPage, BProjectPresets, BCpuPage, BToolchainPage, BModulePage, BOutputPage, BCreationPage, BFinalPage] + page_list = [BIntroPage, BFolderPage, BVersionPage, BBoardPage, BProjectPresets, BCpuPage, BToolchainPage, BModulePage, BCreationPage, BFinalPage] wizard = BWizard(page_list) wizard.show() wizard.exec_() @@ -123,7 +121,7 @@ def main(): datadir = DATA_DIR qrc, rcc = os.path.join(datadir, 'bertos.qrc'), os.path.join(datadir, 'bertos.rcc') if not (hasattr(sys, "frozen") and sys.frozen) and newer(qrc, rcc): - os.system("rcc -binary %s -o %s" %(qrc, rcc)) + os.system("rcc -binary \"%s\" -o \"%s\"" %(qrc, rcc)) QResource.registerResource(rcc) if len(sys.argv) == 3 and sys.argv[1] == "--edit": editProject(os.path.abspath(sys.argv[2]))