Explorar el Código

Fix fingerprint issue on Windows

pull/568/head
Guillaume Vincent hace 4 años
padre
commit
db9088c4a0
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      cli/lesspass/fingerprint.py
  2. +1
    -1
      cli/lesspass/version.py

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

@@ -105,7 +105,7 @@ def getchar():
# jasonrdsouza & mvaganov https://gist.github.com/jasonrdsouza/1901709
ch = ""
if os.name == "nt": # Windows
ch = msvcrt.getch().decode('utf-8')
ch = msvcrt.getwch()
else:
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)


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

@@ -1 +1 @@
__version__ = "10.0.1"
__version__ = "10.0.2"

Cargando…
Cancelar
Guardar