You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Update class in the file contains a method notifi which uses the github url to fetch Readme.md
The method searches for regular expression match of here:
match=re.search(r'Download the latest release version (\S+)', decoded_line)
The match will always be None as there is no such line in the Readme.md file, it was removed in this commit
Suggestion:
Instead of using the Readme.md file we could directly use the __version.py of the repository, and perform a regex search to fetch the latest version.
The text was updated successfully, but these errors were encountered:
Description:
The
Update
class in the file contains a methodnotifi
which uses the github url to fetchReadme.md
The method searches for regular expression match of here:
The match will always be
None
as there is no such line in theReadme.md
file, it was removed in this commitSuggestion:
Instead of using the
Readme.md
file we could directly use the__version.py
of the repository, and perform a regex search to fetch the latest version.The text was updated successfully, but these errors were encountered: