Explorar el Código

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

pull/492/head
leo-stone hace 5 años
committed by Guillaume Vincent
padre
commit
999e5e2d6d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      cli/lesspass/clipboard.py

+ 1
- 1
cli/lesspass/clipboard.py Ver fichero

@@ -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'))

Cargando…
Cancelar
Guardar