mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Fix version string regex
This commit is contained in:
		| @@ -683,7 +683,7 @@ class RemoteVersionView(GenericAPIView): | ||||
|                     + "/paperless-ngx/main/src/paperless/version.py", | ||||
|                 ) as response: | ||||
|                     remote = response.read().decode("utf-8") | ||||
|                 match = re.search("(\\d+, \\d+, \\d+)", remote) | ||||
|                 match = re.search(r"(\d+, \d+, \d+)", remote) | ||||
|                 if match: | ||||
|                     remote_version = ".".join(match[0].split(", ")) | ||||
|             except urllib.error.URLError: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Michael Shamoon
					Michael Shamoon