Skip to content

Commit

Permalink
Fix TeamViewer (#8)
Browse files Browse the repository at this point in the history
* fix adobe reader DC/non-DC versions

* fix teamviewer (webpage changed)
  • Loading branch information
obsti8383 committed Apr 17, 2021
1 parent 06be921 commit cb7b093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/teamviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def getEditions(template):

#Windows
# Looking for tag with content of 3 digits blocks starting with tab eg. <tab>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}")

Expand Down

0 comments on commit cb7b093

Please sign in to comment.