From b657b93825574556f7a12f63c65d691f3e0bb25b Mon Sep 17 00:00:00 2001 From: albertogomcas Date: Fri, 20 Jun 2008 09:06:03 +0000 Subject: [PATCH] (hooke:cli.py) changed previously forgotten alphainput in do_exit --- hooke_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooke_cli.py b/hooke_cli.py index 9630ad3..d5aa310 100755 --- a/hooke_cli.py +++ b/hooke_cli.py @@ -270,7 +270,7 @@ Syntax: genlist [input files] def do_genlist(self,args): #args list is: input path, output name if len(args)==0: - args=linp.safeinput('Input files?',[]) + args=linp.safeinput('Input files?') arglist=args.split() list_path=arglist[0] @@ -930,7 +930,7 @@ Syntax: quit if (not self.playlist_saved) or (not self.notes_saved): we_exit=linp.safeinput('You did not save your playlist and/or notes. Exit?',['n']) else: - we_exit=linp.alphainput('Exit?',['y']) + we_exit=linp.safeinput('Exit?',['y']) if we_exit[0].upper()=='Y': wx.CallAfter(self.frame.Close) -- 2.26.2