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
{{ message }}
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
With each change that goes in for the admin CLI there is a chance that Python 3.5 incompatible changes get checked in - especially try - except blocks (uses except (exception name), e:) and print statements.
There are multiple places where new print messages keep getting added and those break the admin CLI on VSphere 6.5 (Python 3.5).
Instead define a new print_message() function that is called everywhere in the CLI code and it in turn uses the correct syntax for printing.
The text was updated successfully, but these errors were encountered:
With each change that goes in for the admin CLI there is a chance that Python 3.5 incompatible changes get checked in - especially try - except blocks (uses except (exception name), e:) and print statements.
There are multiple places where new print messages keep getting added and those break the admin CLI on VSphere 6.5 (Python 3.5).
Instead define a new print_message() function that is called everywhere in the CLI code and it in turn uses the correct syntax for printing.
The text was updated successfully, but these errors were encountered: