Parcourir la source

encode password into bytearray for piping to system copy into clipboard command (#488)

pull/492/head
leo-stone il y a 5 ans
committed by Guillaume Vincent
Parent
révision
999e5e2d6d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      cli/lesspass/clipboard.py

+ 1
- 1
cli/lesspass/clipboard.py Voir le fichier

@@ -46,4 +46,4 @@ def copy(text):
p = _popen(args)
else:
p = _popen(args, close_fds=True)
p.communicate(input=text)
p.communicate(input=text.encode('ascii'))

Chargement…
Annuler
Enregistrer