浏览代码

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_ 4 年前
committed by GitHub
父节点
当前提交
473b253971
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      cli/lesspass/fingerprint.py

+ 3
- 2
cli/lesspass/fingerprint.py 查看文件

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


正在加载...
取消
保存