Explorar el Código

Not import tty and termios when in nt os (#563)

Modules tty and termios will not be used in Windows

Fix lesspass/lesspass#556
pull/568/head
AT_ hace 4 años
committed by GitHub
padre
commit
473b253971
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. +3
    -2
      cli/lesspass/fingerprint.py

+ 3
- 2
cli/lesspass/fingerprint.py Ver fichero

@@ -3,12 +3,13 @@ import hashlib
import sys
import os
import random
import tty
import termios
import threading

if os.name == "nt":
import msvcrt
else:
import tty
import termios


icon_names = [


Cargando…
Cancelar
Guardar