You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							 | 
							
							"""
 | 
						
						
						
						
							 | 
							
							Hack to get scripts to run from source checkout without having to set
 | 
						
						
						
						
							 | 
							
							PYTHONPATH.
 | 
						
						
						
						
							 | 
							
							"""
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							import sys
 | 
						
						
						
						
							 | 
							
							from os.path import dirname, join, abspath
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							db_path = dirname(__file__)
 | 
						
						
						
						
							 | 
							
							project_path = abspath(join(db_path, ".."))
 | 
						
						
						
						
							 | 
							
							sys.path.insert(0, project_path)
 |