Convert tabs to spaces in server.py (related to #1862)
This commit is contained in:
		
							parent
							
								
									bbf609b880
								
							
						
					
					
						commit
						095a51edd0
					
				| 
						 | 
					@ -153,10 +153,10 @@ class WebServer(object):
 | 
				
			||||||
        # not exist if a setuptools script is installed as an egg. It may be
 | 
					        # not exist if a setuptools script is installed as an egg. It may be
 | 
				
			||||||
        # set incorrectly for entry points created with pip on Windows.
 | 
					        # set incorrectly for entry points created with pip on Windows.
 | 
				
			||||||
        if getattr(__main__, "__package__", None) is None or (
 | 
					        if getattr(__main__, "__package__", None) is None or (
 | 
				
			||||||
                os.name == "nt"
 | 
					            os.name == "nt"
 | 
				
			||||||
                and __main__.__package__ == ""
 | 
					            and __main__.__package__ == ""
 | 
				
			||||||
                and not os.path.exists(py_script)
 | 
					            and not os.path.exists(py_script)
 | 
				
			||||||
                and os.path.exists(f"{py_script}.exe")
 | 
					            and os.path.exists(f"{py_script}.exe")
 | 
				
			||||||
        ):
 | 
					        ):
 | 
				
			||||||
            # Executed a file, like "python app.py".
 | 
					            # Executed a file, like "python app.py".
 | 
				
			||||||
            py_script = os.path.abspath(py_script)
 | 
					            py_script = os.path.abspath(py_script)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user