sultan icon indicating copy to clipboard operation
sultan copied to clipboard

should not append semicolon ";" on Windows cmd or Powershell

Open TonyApuzzo opened this issue 6 years ago • 1 comments

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.

TonyApuzzo avatar Apr 21 '18 21:04 TonyApuzzo

An ugly hack that works:

On Line 262 of api.py change output = output.strip() + ";" to output = output.strip()

balaji-dutt avatar Jun 22 '20 13:06 balaji-dutt