From cb7b0933b644ac17a1791df0579cd3898e22c575 Mon Sep 17 00:00:00 2001 From: Florian Date: Sat, 17 Apr 2021 10:47:48 +0200 Subject: [PATCH] Fix TeamViewer (#8) * fix adobe reader DC/non-DC versions * fix teamviewer (webpage changed) --- clients/teamviewer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/teamviewer.py b/clients/teamviewer.py index 495eea3..0b8a7ac 100644 --- a/clients/teamviewer.py +++ b/clients/teamviewer.py @@ -61,8 +61,8 @@ def getEditions(template): #Windows # Looking for tag with content of 3 digits blocks starting with tab eg. 13.2.2344 ... - found = soup.find(string=re.compile('\s\d+\.\d+\.\d+')) - release = found.lstrip().rstrip() + found = soup.find(string=re.compile('Current version: \d+\.\d+\.\d+')) + release = found[16:].lstrip().rstrip() debug(f"release: {release}")