| 
					
				 | 
			
			
				@@ -233,7 +233,9 @@ def normalize(config_filename, config): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             path=updated_repository_path, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                elif repository_path.startswith('ssh://'): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                elif repository_path.startswith('ssh://') or repository_path.startswith( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    'rclone://' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                ): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     config['repositories'].append(repository_dict) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 else: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     rewritten_repository_path = f"ssh://{repository_path.replace(':~', '/~').replace(':/', '/').replace(':', '/./')}" 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -242,7 +244,7 @@ def normalize(config_filename, config): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             dict( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                 levelno=logging.WARNING, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                 levelname='WARNING', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                                msg=f'{config_filename}: Remote repository paths without ssh:// syntax are deprecated and support will be removed from a future release. Interpreting "{repository_path}" as "{rewritten_repository_path}"', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                                msg=f'{config_filename}: Remote repository paths without ssh:// or rclone:// syntax are deprecated and support will be removed from a future release. Interpreting "{repository_path}" as "{rewritten_repository_path}"', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     ) 
			 |