parent
e695725a34
commit
1e0085185e
|
@ -741,7 +741,7 @@ class Application(object):
|
||||||
def draw_nothing(self):
|
def draw_nothing(self):
|
||||||
self.win.addstr(self.y-1, 0, util.pad('', self.x - 1))
|
self.win.addstr(self.y-1, 0, util.pad('', self.x - 1))
|
||||||
|
|
||||||
def open_aes_file(path, nl, name=None):
|
def open_aes_file(path, nl, name=None, binary=False):
|
||||||
if os.path.isfile(path) or not os.path.exists(path):
|
if os.path.isfile(path) or not os.path.exists(path):
|
||||||
p = getpass.getpass("Please enter the AES password: ")
|
p = getpass.getpass("Please enter the AES password: ")
|
||||||
return buffer.AesBuffer(path, p, nl, name)
|
return buffer.AesBuffer(path, p, nl, name)
|
||||||
|
|
Loading…
Reference in New Issue