branch : pmacs2
This commit is contained in:
moculus 2008-01-19 05:08:39 +00:00
parent e695725a34
commit 1e0085185e
1 changed files with 1 additions and 1 deletions

View File

@ -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)