forked from zaclys/searxng
		
	Merge pull request #2764 from mikamp116/patch-1
Fix bug for 'FileNotFoundError' in 'standalone_searx.py'
This commit is contained in:
		
						commit
						312a51566c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -31,7 +31,7 @@ Example to run it from python:
 | 
				
			||||||
... engine_cs = list(searx.engines.categories.keys())
 | 
					... engine_cs = list(searx.engines.categories.keys())
 | 
				
			||||||
... # load module
 | 
					... # load module
 | 
				
			||||||
... spec = importlib.util.spec_from_file_location(
 | 
					... spec = importlib.util.spec_from_file_location(
 | 
				
			||||||
...     'utils.standalone_searx', 'utils/standalone_searx.py')
 | 
					...     'utils.standalone_searx', 'searx_extra/standalone_searx.py')
 | 
				
			||||||
... sas = importlib.util.module_from_spec(spec)
 | 
					... sas = importlib.util.module_from_spec(spec)
 | 
				
			||||||
... spec.loader.exec_module(sas)
 | 
					... spec.loader.exec_module(sas)
 | 
				
			||||||
... # use function from module
 | 
					... # use function from module
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue