소스 검색

Fix fingerprint issue on Windows

pull/568/head
Guillaume Vincent 4 년 전
부모
커밋
db9088c4a0
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      cli/lesspass/fingerprint.py
  2. +1
    -1
      cli/lesspass/version.py

+ 1
- 1
cli/lesspass/fingerprint.py 파일 보기

@@ -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 파일 보기

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

불러오는 중...
취소
저장