--- a/install.py Wed Apr 24 19:44:41 2013 +0200 +++ b/install.py Sun Apr 28 19:04:34 2013 +0200 @@ -1094,6 +1094,7 @@ pass # cleanup old installation + print("Cleaning up old installation ...") try: if doCleanup: if distDir: @@ -1105,10 +1106,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')]: @@ -1117,7 +1119,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']),