mRemoteNG Package
Published: July 12, 2021 - 12:08 PM
Good morning,
Two small modifications need to be made for compatibility with Python 3:
Lines 116 and 117:
Also, the import process for BeautifulSoup has changed.
An alternative to avoid making all the changes:
Everything else works perfectly!
Sincerely,
Étienne
Two small modifications need to be made for compatibility with Python 3:
Lines 116 and 117:
Code: Select all
# Il manquait les parenthèses
print("Current %s WAPT package version is : %s" % (software_name,current_version))
print("Latest %s version available is : %s" % (software_name,software_version))
An alternative to avoid making all the changes:
Code: Select all
import bs4 as BeautifulSoup
Sincerely,
Étienne