mirror of
				https://github.com/MCV-Software/TWBlue.git
				synced 2025-11-04 05:47:05 +00:00 
			
		
		
		
	Main.py: check if Uninstall.exe exists before importing commandline and other modules
This commit is contained in:
		@@ -14,6 +14,9 @@ if system == "Windows":
 | 
				
			|||||||
 sys.stderr = open(os.path.join(os.getenv("temp"), "stderr.log"), "w")
 | 
					 sys.stderr = open(os.path.join(os.getenv("temp"), "stderr.log"), "w")
 | 
				
			||||||
import languageHandler
 | 
					import languageHandler
 | 
				
			||||||
import paths
 | 
					import paths
 | 
				
			||||||
 | 
					#check if TWBlue is installed (Windows only)
 | 
				
			||||||
 | 
					if os.path.exists(paths.app_path(u"Uninstall.exe")):
 | 
				
			||||||
 | 
					 paths.mode="installed"
 | 
				
			||||||
import commandline
 | 
					import commandline
 | 
				
			||||||
import config
 | 
					import config
 | 
				
			||||||
import sound
 | 
					import sound
 | 
				
			||||||
@@ -32,9 +35,6 @@ if system == "Windows":
 | 
				
			|||||||
 from update import updater
 | 
					 from update import updater
 | 
				
			||||||
 stdout_temp=sys.stdout
 | 
					 stdout_temp=sys.stdout
 | 
				
			||||||
 stderr_temp=sys.stderr
 | 
					 stderr_temp=sys.stderr
 | 
				
			||||||
#check if TWBlue is installed
 | 
					 | 
				
			||||||
 if os.path.exists(paths.app_path(u"Uninstall.exe")):
 | 
					 | 
				
			||||||
  paths.mode="installed"
 | 
					 | 
				
			||||||
#if it's a binary version
 | 
					#if it's a binary version
 | 
				
			||||||
 if hasattr(sys, 'frozen'):
 | 
					 if hasattr(sys, 'frozen'):
 | 
				
			||||||
  sys.stderr = open(paths.logs_path("stderr.log"), 'w')
 | 
					  sys.stderr = open(paths.logs_path("stderr.log"), 'w')
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user