Procházet zdrojové kódy

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_ před 4 roky
committed by GitHub
rodič
revize
473b253971
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. +3
    -2
      cli/lesspass/fingerprint.py

+ 3
- 2
cli/lesspass/fingerprint.py Zobrazit soubor

@@ -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 = [


Načítá se…
Zrušit
Uložit