check to see whether site starts with http(s)://
This commit is contained in:
		
							parent
							
								
									dbd74ed6fe
								
							
						
					
					
						commit
						8db84a5656
					
				
							
								
								
									
										4
									
								
								main.py
								
								
								
								
							
							
						
						
									
										4
									
								
								main.py
								
								
								
								
							| 
						 | 
					@ -35,6 +35,10 @@ try:
 | 
				
			||||||
except FileNotFoundError:
 | 
					except FileNotFoundError:
 | 
				
			||||||
	open(args.cfg, "w").write("{}")
 | 
						open(args.cfg, "w").write("{}")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if not cfg['site'].startswith("https://") and not cfg['site'].startswith("http://"):
 | 
				
			||||||
 | 
						print("Site must begin with 'https://' or 'http://'. Value '{}' is invalid - try 'https://{}' instead.".format(cfg['site']))
 | 
				
			||||||
 | 
						sys.exit(1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
print("Using {} as configuration file".format(args.cfg))
 | 
					print("Using {} as configuration file".format(args.cfg))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if "client" not in cfg:
 | 
					if "client" not in cfg:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in New Issue