install.py

branch
5_3_x
changeset 2635
76edcbd56632
parent 2611
dd77cc80e343
child 2638
11b930473425
--- a/install.py	Sun Apr 28 11:06:40 2013 +0200
+++ b/install.py	Sun Apr 28 15:38:35 2013 +0200
@@ -1091,6 +1091,7 @@
         pass
     
     # cleanup old installation
+    print("Cleaning up old installation ...")
     try:
         if doCleanup:
             if distDir:
@@ -1102,10 +1103,11 @@
         exit(7)
 
     # Create a config file and delete the default one
+    print("\nCreating configuration file ...")
     createConfig()
 
     # Compile .ui files
-    print("Compiling user interface files...")
+    print("\nCompiling user interface files ...")
     # step 1: remove old Ui_*.py files
     for root, _, files in os.walk(sourceDir):
         for file in [f for f in files if fnmatch.fnmatch(f, 'Ui_*.py')]:
@@ -1114,7 +1116,7 @@
     compileUiFiles()
     
     if doCompile:
-        print("\nCompiling source files...")
+        print("\nCompiling source files ...")
         if distDir:
             compileall.compile_dir(sourceDir,
                 ddir=os.path.join(distDir, modDir, cfg['ericDir']),

eric ide

mercurial