From: Fredrik Tolf Date: Wed, 6 Jun 2018 13:35:00 +0000 (+0200) Subject: auth: Fixed typos. X-Git-Url: http://dolda2000.com/gitweb/?p=fulbank.git;a=commitdiff_plain;h=df72b1a5afb45aaa3d26298fa88aa75c0c0b4c7c auth: Fixed typos. --- diff --git a/fulbank/auth.py b/fulbank/auth.py index 1a9f13d..10c1afe 100644 --- a/fulbank/auth.py +++ b/fulbank/auth.py @@ -47,9 +47,9 @@ class termconv(conv): finally: termios.tcsetattr(self.ifp.fileno(), termios.TCSANOW, bka) -class ctermconv(conv): +class ctermconv(termconv): def __init__(self, fp): - super().__init__(fp) + super().__init__(fp, fp) self.cfp = fp def close(self): @@ -64,7 +64,7 @@ null = conv() stdioconv = termconv(sys.stdin, sys.stdout) def ttyconv(): - return ctermconv(io.TextIOWrapper(io.FileIO(os.open("/dev/tty", os.O_RDWR | os.O_NCTTY), "r+"))) + return ctermconv(io.TextIOWrapper(io.FileIO(os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY), "r+"))) def default(): return null