sultan
sultan copied to clipboard
should not append semicolon ";" on Windows cmd or Powershell
the semicolon breaks usage of this module on Windows if you have PowerShell or cmd shell, and probably other shells since a trailing ; is not ignored by those shells.
An ugly hack that works:
On Line 262 of api.py change output = output.strip() + ";"
to output = output.strip()